A016516 Continued fraction for log(88).
4, 2, 10, 1, 1, 7, 1, 1, 6, 4, 18, 1, 4, 37, 1, 1, 3, 26, 1, 31, 2, 4, 18, 1, 2, 1, 3, 1, 8, 1, 4, 2, 1, 2, 7, 11, 2, 2, 1, 3, 1, 1, 1, 3, 1, 12, 2, 7, 3, 2, 3, 3, 1, 1, 22, 2, 4, 1, 1, 4, 5, 7, 3, 13, 2, 1, 4, 1, 2, 354, 2, 1, 2, 1, 1
Offset: 1
Examples
4.47733681447820647231363994... = 4 + 1/(2 + 1/(10 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 24 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016711 (decimal expansion).
Programs
-
Mathematica
ContinuedFraction[Log[88],100] (* Harvey P. Dale, Aug 04 2016 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(88)); for (n=1, 20000, write("b016516.txt", n, " ", x[n])); } \\ Harry J. Smith, May 24 2009