A016474 Continued fraction for log(46).
3, 1, 4, 1, 5, 11, 2, 57, 1, 350, 1, 5, 4, 6, 1, 8, 1, 1, 2, 2, 2, 3, 3, 2, 9, 1, 3, 3, 1, 3, 2, 25, 1, 2, 2, 24, 8, 1, 1, 1, 11, 1, 3, 6, 1, 13, 1, 3, 1, 1, 1, 1, 1, 21, 2, 1, 1, 2, 2, 1, 2, 7, 11, 3, 1, 1, 13, 5, 1, 5, 4, 1, 4, 1, 5, 2
Offset: 1
Examples
3.828641396489095000223984953... = 3 + 1/(1 + 1/(4 + 1/(1 + 1/(5 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016669 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[46],120] (* Harvey P. Dale, Nov 06 2019 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(46)); for (n=1, 20000, write("b016474.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009