Let $f(1) = f(2) = 1$ and for $n>2:$
$$f(n) = \frac{f(n-1)^2 (f(n-1)+1)^2}{f(n-2)(f(n-2)+1)^3}$$
So we get
- $f(3) = \frac{1}{2} = 0.5$
- $f(4) = \frac{9}{128} = 0.0703125$
- $f(5) = \frac{56307}{16777216} = 0.00335615...$
- $f(6) = \frac{38821347033039473}{295147905179352825856} = 0.000131531...$
and the sequence is going to $0$ in the limit.
Now we are getting to zero at an exponential rate
$$ \lim_{n \to \infty} \frac{f(n+1)}{f(n)} = C$$
Where $C$ is a constant
$$C = 0.003879..$$
What is the closed form for $C$ ??
C is probably algebraic !!
see the analogue simpler limits that give algebraic numbers :
$ a_n = \frac{a_{n-1}(a_{n-1} + 1)}{a_{n-2}}.$ and $ T = 3.73205080..$?
some toughts
I was thinking about using Stolz-Cesàro and substituting the defining identity maybe, but it is not clear to me how exactly that would work.
( https://en.wikipedia.org/wiki/Stolz%E2%80%93Ces%C3%A0ro_theorem )
$$ \lim_{n \to \infty} \frac{f(n)}{f(n-1)} = \lim_{n \to \infty} \frac{f(n) - f(n-1)}{f(n-1) - f(n-2)} = \lim_{n \to \infty} \frac{\frac{f(n-1)^2 (f(n-1)+1)^2}{f(n-2)(f(n-2)+1)^3} - f(n-1)}{f(n-1) - f(n-2)} = C$$
or
$$ \lim_{n \to \infty} \frac{f(n)}{f(n-1)} = \frac{f(n-1) (f(n-1)+1)^2}{f(n-2)(f(n-2)+1)^3}$$
But that seems trivial because the limit of $\frac{(f(n-1)+1)^2}{(f(n-2)+1)^3} = 1$. (*)
Because of * it MIGHT BE TRUE that (based on the above)
$$\lim_{n \to \infty} \frac{\frac{f(n-1)^2}{f(n-2)} - f(n-1)}{f(n-1) - f(n-2)} = C$$
??
what may or may not be a valid step and may or may not be helpful.
I think I made a mistake already somewhere...
edit
As noted in the comment the limit depends on the intial value so using Stolz-Cesàro alone is certainly insufficient.
See also the related question with a similar recursion and identical initial values.
$$f(0) = -1 + \frac{1}{2} \left(- \frac{1}{\sqrt[3]{27 - 3 \sqrt{78}}} - \frac{\sqrt[3]{9 - \sqrt{78}}}{3^{2/3}}\right) \approx -1.7606898534022837$$
– Dan Aug 15 '24 at 02:40