Let $f(n)$ be the largest real solution of
$$x^n - x^{n-1} = 1 $$
As $n$ grows to positive infinity we get the asymptotic :
$$ f(n) = 1 + \frac{\ln(n)}{n} + \frac{\exp(2)}{n^2} + ...$$
Where the value $\exp(2)$ is optimal !
( and $...$ means smaller term(s) )
Notice $f(2)$ is the golden mean.
How to show this asymptotic ?
Edit
Corrected the formula.
A rough outline.
The first few terms in the asymptotic are
$$ f(n) = 1 + \frac{W(n)}{n} + \frac{W(n)^2}{2n^2} + \cdots, $$
where $W$ is the Lambert-W function, so the stated asymptotic is incorrect.
First show that, with $x = 1 + \frac{W(n)}{n} + \frac{z}{n}$, where $z = O(1)$, we have
$$ x^n - x^{n-1} - 1 \to e^z - 1 $$
uniformly as $n \to \infty$. Conclude by Hurwitz's theorem that
$$ f(n) = 1 + \frac{W(n)}{n} + \frac{\epsilon_n}{n} $$
with $\epsilon_n \to 0$ as $n \to \infty$. Substitute this into the equation
$$ f(n)^n - f(n)^{n-1}-1 = 0 $$
and apply asymptotic simplifications to conclude that $\epsilon_n \sim W(n)^2/(2n)$ as $n \to \infty$.