Does anyone know what this sequence converges to?
$t_1 = \ln(n)$
$t_2 = \ln(n - t1) = \ln(n - \ln(n))$
$t_3 = \ln(n - t2) = \ln(n - \ln(n - \ln(n)))$
$...$
$t_k = \ln(n - t_{k-1})$
Notice that $t_1 < t_2$, $t_2 > t_3$, $t_3 < t_4$, ... and that $|t_k - t_{k+1}| \to 0$
Just as Gerhard S. commented, then you need to solve for $x$ the equation $e^x+x=n$, the solution of which being given in terms of Lambert function $$x=n-W(e^n)$$
Assuming $n$ to be "large", a very good approximation is given by $$x=\left(1-\frac{1}{n}\right) \log (n)$$ For $n=10$, the "exact" value would be $\approx 2.07058$ while the approximation gives $\approx 2.07233$.