A080987 Ratios of successive terms of A080985.
3, 11, 145, 24721, 706521601, 568754681712768961, 364030550787463437509470123011290881, 147562413614008475146723669284672702440197339884722672618106791371480321
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
The b sequence begins 1, 3/2, 21/10, 861/310, 1275141/363010, 2551762438701/594665194510, ... = a(n)/A079278.
b := proc(n) option remember; if n=1 then 1 else b(n-1)+1/(1+1/b(n-1)); fi; end;
nxt[n_]:=n+1/(1+1/n); Numerator/@Nest[Append[#,nxt[Last[#]]]&,{1},10] (* Harvey P. Dale, Apr 21 2011 *)
The sequence {b(n)} begins 1, 4/3, 56/33, 9968/4785, 294115808/118289985, ...
Numerator/@NestList[#+1/(2+1/#)&,1,9] (* Harvey P. Dale, Jul 07 2011 *)
a := 1; for i := 1:8 do write a := a+1/(2+1/a);
Comments