A016450 Continued fraction for log(22).
3, 10, 1, 61, 16, 2, 3, 3, 5, 6, 171, 2, 4, 5, 4, 1, 2, 1, 1, 3, 1, 1, 3, 22, 1, 13, 1, 17, 3, 2, 1, 3, 1, 1, 1, 4, 6, 1, 3, 2, 2, 1, 2, 1, 8, 2, 25, 5, 12, 1, 1, 1, 2, 1, 7, 3, 2, 1, 4, 4, 1, 17, 1, 66, 1, 2, 37, 1, 3, 3, 5, 1, 14, 1
Offset: 1
Examples
3.091042453358315853479175... = 3 + 1/(10 + 1/(1 + 1/(61 + 1/(16 + ...)))). - _Harry J. Smith_, May 17 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016645 Decimal expansion. - Harry J. Smith, May 17 2009
Programs
-
Mathematica
ContinuedFraction[Log[22], 100] (* Paolo Xausa, Mar 22 2024 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(22)); for (n=1, 20000, write("b016450.txt", n, " ", x[n])); } \\ Harry J. Smith, May 17 2009