Playing with continued fractions, I came with the idea of iterating the limit of the simplest one:
$$1 + \cfrac{1}{1+\cfrac{1}{1+\cfrac{1}{1+\cfrac{1}{1+\cfrac{1}{1+\cdots}}}}}\ = \Phi$$
And then I thoght about iterating the result: $$\Phi + \cfrac{1}{\Phi+\cfrac{1}{\Phi+\cfrac{1}{\Phi+\cfrac{1}{\Phi+\cfrac{1}{\Phi+\cdots}}}}}\ = ?$$
And after that keep iterating again and again. Essentially, what I am doing is solving this:
$$x = a + \frac{1}{x}$$
for different values of $a$. Whose solution is:
$$ x = \frac{a \pm \sqrt{a^2 + 4}}{2}$$
And I'm just staying with the positive solution. At the end, I'm just exploring this sequence defined recursively:
$$ f(1) = \Phi \\ f(n+1) = \frac{f(n) + \sqrt{f(n)^2 + 4}}{2} $$
When you see the plot of the terms of the sequence, you get this picture:

I would like to know which is the function that generates that curve. It really seems to be a continuos function (notice that the picture is a set of points so close, that may seem to be continuous, but it's not).
So... What's the function underlying this curve and how can we find it?
Many thanks in advance!
This question is similar to MSE question 1072256 "$a_{n+1} = \log(1+a_n), a_1>0.$ ..." and to MSE question 3215 "Convergence of $\sqrt{n}x_n$ where $x_{n+1}=\sin(x_n)$". Because of the similarities, it is natural to assume that there is a power series $\, f(n) \approx f^*(n) := \sqrt{2n} \, (1 + c_1 x - c_2 x^2 + c_3 x^3 - c_4 x^4 + O(x^5)) \,$ where $\, x := 1/n \,$ and $\, c_k \,$ is a polynomial of degree $k$ in $\, y := \log(x). \,$ Using the defining recursion for $\, f(n) \,$ we can solve for the coefficients $\, c_k \,$ to get $$ c_1 = c + y/8, \quad c_2 = (1+4c)^2/32 + (1+4c)y/32 + y^2/128,$$ $$ c_3 \!=\! \frac{11 \!+\! 120 c \!+\! 384 c^2 \!+\! 384 c^3}{768} \!+\! \frac{5 \!+\! 32 c \!+\! 48 c^2}{256} y \!+\! \frac{1 \!+\! 3 c}{128} y^2 \!+\! \frac{y^3}{1024},$$ where $\, c\,$ is a constant depending on $\, f(0). \,$ If we use the initial values $\, f(0) = 0, f(1) = 1, \, f(2) = \phi, \dots, \,$ then $\, c \approx -0.291131527. \,$ Note that since $\, \sqrt{1/2}-1 \approx -0.292 \,$ the formula is already close for $\, n=1.$
To judge the accuracy, we get $\, f(1) = 1, \,$ $ f^*(1) \approx 1.00269, \,$ $f(2) \approx 1.61803, \,$ $ f^*(2) \approx 1.61826, \,$ $f(3) \approx 2.09529, \,$ and $ f^*(3) \approx 2.09535. \,$