A016483 Continued fraction for log(55).
4, 136, 2, 1, 2, 1, 2, 3, 1, 1, 1, 8, 1, 1, 2, 1, 5, 1, 1, 2, 7, 3, 1, 22, 5, 3, 6, 1, 3, 4, 1, 1, 1, 1, 2, 2, 1, 5, 1, 1, 1, 2, 3, 2, 1, 1, 5, 2, 2, 25, 6, 1, 4, 1, 7, 2, 1, 2, 1, 15, 2, 3, 5, 1, 3, 1, 18, 8, 9, 1, 4, 1, 4, 2, 1, 3, 1, 1, 1
Offset: 1
Examples
4.0073331852324709186627029... = 4 + 1/(136 + 1/(2 + 1/(1 + 1/(2 + ...)))). - _Harry J. Smith_, May 22 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016678 Decimal expansion. - Harry J. Smith, May 22 2009
Programs
-
Mathematica
ContinuedFraction[Log[55],120] (* Harvey P. Dale, May 08 2017 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(55)); for (n=1, 20000, write("b016483.txt", n, " ", x[n])); } \\ Harry J. Smith, May 22 2009