A016472 Continued fraction for log(44).
3, 1, 3, 1, 1, 1, 2, 1, 2, 2, 1, 2, 6, 1, 1, 1, 1, 1, 2, 2, 9, 1, 1, 127, 2, 1, 1, 8, 1, 1, 2, 2, 1, 3, 1, 10, 1, 5, 2, 3, 2, 8, 1, 1, 19, 1, 3, 1, 2, 3, 1, 3, 1, 3, 1, 2, 1, 1, 1, 4, 1, 1, 12, 2, 4, 2, 22, 1, 2, 3, 4, 2, 12, 4, 1, 2, 2, 2
Offset: 1
Examples
3.784189633918261162896407820... = 3 + 1/(1 + 1/(3 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016667 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[44], 100] (* Paolo Xausa, Mar 23 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(44)); for (n=1, 20000, write("b016472.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009