A016528 Continued fraction for log(100).
4, 1, 1, 1, 1, 7, 7, 3, 6, 1, 1, 9, 1, 2, 1, 2, 1, 1, 1, 12, 1, 1, 2, 2, 11, 1, 4, 2, 2, 1, 1, 39, 1, 1, 1433, 2, 3, 1, 5, 1, 10, 1, 35, 2, 2, 6, 1, 1, 3, 6, 2, 1, 4, 3, 3, 1, 1, 3, 3, 1, 1, 1, 2, 32, 1, 1, 1, 2, 1, 1, 1, 58, 5, 2, 2, 1
Offset: 1
Examples
4.605170185988091368035982909... = 4 + 1/(1 + 1/(1 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 25 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
- G. Xiao, Contfrac
- Index entries for continued fractions for constants
Crossrefs
Cf. A016723 Decimal expansion. - Harry J. Smith, May 25 2009
Programs
-
Mathematica
ContinuedFraction[Log[100],120] (* Harvey P. Dale, Jul 13 2016 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(100)); for (n=1, 20000, write("b016528.txt", n, " ", x[n])); } \\ Harry J. Smith, May 25 2009