A016455 Continued fraction for log(27).
3, 3, 2, 1, 1, 1, 2, 2, 1, 4, 4, 1, 3, 10, 1, 4, 1, 5, 3, 5, 5, 1, 1, 1, 3, 108, 1, 7, 1, 1, 3, 3, 1, 1, 1, 8, 2, 1, 1, 1, 2, 3, 1, 3, 1, 7, 1, 1, 2, 12, 1, 50, 4, 3, 23, 3, 8, 3, 1, 5, 1, 4, 7, 1, 6, 1, 1, 5, 1, 1, 1, 1, 6, 15, 1, 2, 5, 2
Offset: 1
Examples
3.295836866004329074185735710... = 3 + 1/(3 + 1/(2 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 20 2009
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
Crossrefs
Cf. A016650 Decimal expansion. - Harry J. Smith, May 20 2009
Programs
-
Mathematica
ContinuedFraction[Log[27],80] (* Harvey P. Dale, May 02 2012 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(27)); for (n=1, 20000, write("b016455.txt", n, " ", x[n])); } \\ Harry J. Smith, May 20 2009