A016482 Continued fraction for log(54).
3, 1, 89, 1, 3, 2, 35, 1, 1, 1, 1, 39, 3, 1, 1, 1, 14, 4, 13, 2, 6, 1, 3, 1, 1, 12, 1, 2, 12, 1, 3, 1, 1, 14, 2, 1, 10, 123, 1, 14, 2, 3, 1, 2, 1, 3, 1, 72, 2, 8, 21, 1, 1, 1, 5, 1, 25, 4, 4, 1, 1, 89, 3, 1, 2, 1, 1, 4, 3, 6, 1, 3, 5, 59
Offset: 1
Examples
3.98898404656427438360296783... = 3 + 1/(1 + 1/(89 + 1/(1 + 1/(3 + ...)))). - _Harry J. Smith_, May 22 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016677 (decimal expansion).
Programs
-
Mathematica
ContinuedFraction[Log[54], 100] (* Paolo Xausa, Mar 25 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(54)); for (n=1, 20000, write("b016482.txt", n, " ", x[n])); } \\ Harry J. Smith, May 22 2009