cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A016492 Continued fraction for log(64).

Original entry on oeis.org

4, 6, 3, 2, 2, 18, 1, 1, 1, 64, 1, 3, 1, 10, 1, 2, 1, 7, 2, 5, 3, 1, 2, 2, 3, 2, 1, 2, 1, 4, 1, 3, 3, 2, 1, 1, 1, 4, 1, 1, 7, 2, 1, 27, 2, 1, 1, 4, 4, 1, 1, 1, 4, 1, 1, 6, 20, 1, 8, 2, 2, 1, 5, 1, 11, 1, 10, 1, 5, 1, 1, 2, 5, 9, 1, 5, 1, 2, 2
Offset: 1

Views

Author

Keywords

Examples

			4.158883083359671856503392728... = 4 + 1/(6 + 1/(3 + 1/(2 + 1/(2 + ...)))). - _Harry J. Smith_, May 22 2009
		

Crossrefs

Cf. A016687 (decimal expansion).

Programs

  • Mathematica
    ContinuedFraction[Log[64], 100] (* Paolo Xausa, Mar 27 2024 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(64)); for (n=1, 20000, write("b016492.txt", n, " ", x[n])); } \\ Harry J. Smith, May 22 2009