A016478 Continued fraction for log(50).
3, 1, 10, 2, 1, 2, 1, 2, 18, 1, 1, 6, 1, 1, 1, 7, 1, 9, 1, 9, 3, 1, 4, 1, 1, 3, 9, 5, 1, 1, 2, 1, 3, 5, 7, 1, 2, 1, 1, 2, 18, 1, 2, 2, 2, 1, 1, 2, 2, 1, 1, 1, 13, 5, 515, 8, 4, 2, 2, 1, 1, 1, 44, 4, 6, 8, 4, 1, 5, 2, 3, 51, 2, 11, 2, 1, 7, 2
Offset: 1
Examples
3.91202300542814605861875078... = 3 + 1/(1 + 1/(10 + 1/(2 + 1/(1 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016673 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[50],120] (* Harvey P. Dale, Mar 07 2019 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(50)); for (n=1, 20000, write("b016478.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009