Assume I have $N$ samples $x_1, \cdots, x_N$ from a Gaussian random variable $X\sim N(\mu, \sigma^2)$ where both $\mu$ and $\lambda = 1/\sigma^2$ are unknown.
If I apply MLE, I have $\mu_{MLE} = \frac{1}{N} \sum_i x_i$, and $\lambda_{MLE}^{-1} = \frac{1}{N} \sum_i (x_i - \mu_{MLE})^2$. Note that $\lambda_{MLE}^{-1}$ is biased, and the unbiased estimate will be $\frac{N}{N-1} \lambda_{MLE}^{-1}$.
Now, I have a Gamma distribution $Gamma(a_0, b_0)$ as a prior for $\lambda$.
With $N$ samples, we have that the posterior of $\lambda$ is $Gamma(a_N, b_N)$ where $a_N = a_0 + N/2$ and $b_N = b_0 + N/2 \lambda_{MLE}^{-1}$.
Obviously, if I choose $a_0=0$ and $b_0=0$, then I reach the MLE solution, which is biased.
My question is, is there any prior for $\lambda$ that gives me an unbiased estimate $\frac{N}{N-1} \lambda_{MLE}^{-1}$? It seems that $a_0=-1/2, b_0=0$ does the job, but that does not define a proper Gamma distribution.