OFFSET
1,3
COMMENTS
For x real <> 1 - 1/log(2), Lim_{n -> infinity} abs(u(n) - n) = abs((x - 1)/(1 + (x - 1)*log(2))). [Corrected by Petros Hadjicostas, May 18 2020]
LINKS
Petros Hadjicostas, Proofs of various results about the sequence u(n), 2020.
FORMULA
PROG
(PARI) u(n) = if(n<2, x, (n-1)^2/u(n-1)+1);
a(n) = polcoeff(numerator(u(n)), 1, x);
for(n=1, 30, print1(a(n)", ")) \\ Petros Hadjicostas, May 06 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Oct 14 2002
EXTENSIONS
Name edited by Petros Hadjicostas, May 06 2020
More terms from Michel Marcus, Aug 01 2025
STATUS
approved
