login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A080988 Define b by b(1) = 1 and for n>1, b(n) = b(n-1)+1/(3+1/b(n-1)); sequence gives numerator of b(n). 2
1, 5, 115, 57155, 13457544835, 718532108172999980195, 1987460976488531436231264449305834729789315, 14835338180729281137836887250133924105479472089418750626398379615457041439472496214755 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Suggested by Leroy Quet, Feb 26 2003.
LINKS
FORMULA
b[k]=n[k]/d[k]; n[1]=1, d[1]=1, m=3; for k>=2: n[k+1] = n[k] *(m*n[k] + 2*d[k]), d[k+1] = d[k] *(m*n[k] + d[k])
EXAMPLE
The sequence begins 1, 5/4, 115/76, 57155/31996, 13457544835/6509938156, ...
MATHEMATICA
NestList[#+1/(3+1/#)&, 1, 10]//Numerator (* Harvey P. Dale, Dec 13 2018 *)
PROG
Reduce: a := 1; for i := 1:8 do write a := a+1/(3+1/a);
CROSSREFS
Sequence in context: A255884 A109057 A245105 * A230338 A156514 A319392
KEYWORD
frac,nonn
AUTHOR
Hugo Pfoertner, Feb 26 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)