I want to know if there is an explicit solution to the following recurrence relation:
$f(n+1) = \frac{1}{2} (f(n)^2 + 1)$
with the intial condition $f(1) = 3$.
I want to know if there is an explicit solution to the following recurrence relation:
$f(n+1) = \frac{1}{2} (f(n)^2 + 1)$
with the intial condition $f(1) = 3$.
According to http://oeis.org/A053630, it would seem unlikely.
a(1) = 3, a(n+1) = (1/4)[{a(n)-1}^2 + {a(n)+1}^2] while $a(n) = \text{floor}\left[2 \times 1.597910218031873...^{2^n}\right]$ was by Michael Somos
– Henry
Dec 08 '19 at 17:40