Consider the function $f$ defined as the limit of the functions $$f_0(x)=\sqrt{x}$$ $$f_1(x)=\sqrt{x+\sqrt{x+1}}$$ $$f_2(x)=\sqrt{x+\sqrt{x+1+\sqrt{x+2}}}$$ $$...$$ so that $f(x)$ is defined iff $f_n(x)$ is defined for some $n$. The unique root $x_0$ of the function $f$ satisfies $f(x_0)=0$, and it can be alternatively expressed as the limit of the roots of $f_0, f_1, f_2, ...$. See the graphs below:
Can anyone find an expression equal to this limit? I realize that the chances of something nice and closed-form are slim - can we find a series, integral, or even nested radical representation of the real root of $f(x)$?



To address how I performed the computation, this was done in Mathematica using the following code:
The first command defines $f_n(x)$; the second chooses $n = 500$, which due to the extremely rapid convergence of $\{f_n\}_{n \ge 1}$, is more than sufficient to converge to the desired precision with a short computation time. You can check that the result is accurate by choosing $n = 100$ and seeing that the result is unchanged to $50$ digits of precision; indeed, even to $100$ digits of precision. I would put an upper bound on the error to be less than $10^{-n}$ when using $f_n$ instead of $f$.