A016446 Continued fraction for log(18).
2, 1, 8, 8, 4, 1, 1, 1, 36, 14, 1, 1, 1, 65, 1, 1, 4, 27, 7, 1, 1, 2, 3, 8, 7, 4, 1, 7, 1, 4, 13, 1, 3, 1, 2, 3, 6, 1, 4, 2, 2, 1, 1, 2, 8, 2, 6, 2, 1, 5, 3, 1, 1, 1, 1, 116, 1, 48, 28, 1, 7, 1, 1, 23, 1, 15, 1, 10, 1, 9, 2, 1, 1, 4, 1, 5
Offset: 1
Examples
2.890371757896164692207722595... = 2 + 1/(1 + 1/(8 + 1/(8 + 1/(4 + ...)))). - _Harry J. Smith_, May 17 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016641 Decimal expansion. - Harry J. Smith, May 17 2009
Programs
-
Mathematica
ContinuedFraction[Log[18],120] (* Harvey P. Dale, May 04 2017 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(18)); for (n=1, 20000, write("b016446.txt", n, " ", x[n])); } \\ Harry J. Smith, May 17 2009