A016467 Continued fraction for log(39).
3, 1, 1, 1, 35, 8, 2, 130, 2, 2, 3, 1, 1, 1, 5, 15, 11, 1, 11, 3, 9, 1, 7, 1, 3, 1, 4, 2, 13, 1, 1, 5, 3, 9, 5, 3, 1, 118, 14, 3, 20, 1, 6, 8, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 13, 46, 3, 1, 4, 10, 1, 2, 1, 7, 9, 13
Offset: 1
Examples
3.66356164612964642744873267... = 3 + 1/(1 + 1/(1 + 1/(1 + 1/(35 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016662 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[39],80] (* Harvey P. Dale, Jul 10 2014 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(39)); for (n=1, 20000, write("b016467.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009