A080986 Ratios of successive terms of A080984.
4, 14, 178, 29506, 824811586, 652329111297234946, 411563898885102610704583389879582466, 164866004502764290755787184747538569374756887082805069905652869331016706
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 *)
See under A080984.
Comments