A016473 Continued fraction for log(45).
3, 1, 4, 5, 1, 4, 10, 2, 3, 3, 1, 1, 3, 1, 1, 3, 6, 5, 2, 8, 1, 1, 3, 15, 1, 5, 3, 3, 10, 1, 31, 1, 5, 1, 2, 7, 5, 2, 1, 1, 5, 1, 1, 1, 1, 1, 44, 1, 1, 2, 1, 1, 2, 3, 6, 1, 18, 5, 10, 1, 5, 1, 26, 1, 10, 1, 12, 1, 1, 1, 4, 2, 1, 3, 2, 1, 1
Offset: 1
Examples
3.806662489770319757391249807... = 3 + 1/(1 + 1/(4 + 1/(5 + 1/(1 + ...)))). - _Harry J. Smith_, May 21 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016668 Decimal expansion. - Harry J. Smith, May 21 2009
Programs
-
Mathematica
ContinuedFraction[Log[45], 100] (* Paolo Xausa, Mar 23 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(45)); for (n=1, 20000, write("b016473.txt", n, " ", x[n])); } \\ Harry J. Smith, May 21 2009