login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A080984
Define b by b(1) = 1 and for n > 1, b(n) = b(n-1) + 1/(2 + 1/b(n-1)); sequence gives numerator of b(n).
3
1, 4, 56, 9968, 294115808, 242590126064151488, 158248601344912132157178428071499648, 65129411362626329768830076910903417752818896343320137665280356705971968
OFFSET
1,2
COMMENTS
The next term has 285 digits. - Harvey P. Dale, Jul 07 2011
LINKS
Leroy Quet, Sequence & Its Numerators & Denominators, posting to SeqFan mailing list, Feb 26 2003.
FORMULA
b(k) = n(k)/d(k); n(1)=1, d(1)=1, m=2; for k >= 2: n(k+1) = n(k) *(m*n(k) + 2*d(k)), d(k+1) = d(k)*(m*n(k) + d(k)). - Leroy Quet
EXAMPLE
The sequence {b(n)} begins 1, 4/3, 56/33, 9968/4785, 294115808/118289985, ...
MATHEMATICA
Numerator/@NestList[#+1/(2+1/#)&, 1, 9] (* Harvey P. Dale, Jul 07 2011 *)
PROG
(Reduce) a := 1; for i := 1:8 do write a := a+1/(2+1/a);
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Hugo Pfoertner, Feb 26 2003
STATUS
approved