A016451 Continued fraction for log(23).
3, 7, 2, 1, 1, 1, 2, 3, 1, 1, 1, 4, 158, 3, 2, 5, 1, 6, 4, 2, 72, 1, 2, 1, 5, 14, 3, 1, 5, 2, 2, 1, 4, 8, 1, 1, 1, 4, 18, 1, 1, 2, 1, 4, 2, 1, 1, 1, 2, 3, 3, 26, 1, 3, 1, 22, 3, 5, 1, 2, 2, 2, 1, 29, 2, 1, 2, 1, 8, 9, 2, 1, 2, 8, 19, 1, 1, 1
Offset: 1
Examples
3.135494215929149690806752831... = 3 + 1/(7 + 1/(2 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 17 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016646 Decimal expansion. - Harry J. Smith, May 17 2009
Programs
-
Mathematica
ContinuedFraction[Log[23],120] (* Harvey P. Dale, Jun 23 2020 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(23)); for (n=1, 20000, write("b016451.txt", n, " ", x[n])); } \\ Harry J. Smith, May 17 2009