A016479 Continued fraction for log(51).
3, 1, 13, 1, 2, 68, 1, 59, 4, 9, 3, 1, 1, 3, 1, 17, 1, 2, 4, 4, 1, 4, 1, 1, 2, 3, 1, 9, 4, 5, 1, 1, 21, 186, 1, 1, 15, 1, 8, 25, 1, 1, 1, 1, 107, 163, 1, 2, 1, 1, 2, 9, 10, 2, 2, 4, 1, 1, 121, 1, 2, 19, 1, 2, 1, 47, 1, 2, 2, 1, 3, 4, 6
Offset: 1
Examples
3.93182563272432577164477985... = 3 + 1/(1 + 1/(13 + 1/(1 + 1/(2 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016674 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[51],80] (* Harvey P. Dale, Jan 28 2014 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(51)); for (n=1, 20000, write("b016479.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009