OFFSET
1,2
COMMENTS
The next term is too large to include.
The same sequence of denominators is produced by c(1) = 1 and for n > 1, c(n) = c(n-1) + 1/(n + 1 - c(n-1)). In that case, the sequence begins 1, 3/2, 19/10, 689/310, 902919/363010, 1610893922869/594665194510, ... . - Leonid Broukhis, Jul 09 2022
REFERENCES
Suggested by Leroy Quet, Feb 14 2003.
FORMULA
Conjecture (Quet): a(m+1) = a(m)^2 + a(m)^3 / a(m-1)^2 - a(m)*a(m-1)^2 for m >= 2.
EXAMPLE
The b sequence begins 1, 3/2, 21/10, 861/310, 1275141/363010, 2551762438701/594665194510, ...
MAPLE
b := proc(n) option remember; if n=1 then 1 else b(n-1)+1/(1+1/b(n-1)); fi; end;
MATHEMATICA
Denominator[NestList[#+1/(1+1/#)&, 1, 10]] (* Harvey P. Dale, Oct 07 2012 *)
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Feb 16 2003
STATUS
approved