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.

A016516 Continued fraction for log(88).

Original entry on oeis.org

4, 2, 10, 1, 1, 7, 1, 1, 6, 4, 18, 1, 4, 37, 1, 1, 3, 26, 1, 31, 2, 4, 18, 1, 2, 1, 3, 1, 8, 1, 4, 2, 1, 2, 7, 11, 2, 2, 1, 3, 1, 1, 1, 3, 1, 12, 2, 7, 3, 2, 3, 3, 1, 1, 22, 2, 4, 1, 1, 4, 5, 7, 3, 13, 2, 1, 4, 1, 2, 354, 2, 1, 2, 1, 1
Offset: 1

Views

Author

Keywords

Examples

			4.47733681447820647231363994... = 4 + 1/(2 + 1/(10 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 24 2009
		

Crossrefs

Cf. A016711 (decimal expansion).

Programs

  • Mathematica
    ContinuedFraction[Log[88],100] (* Harvey P. Dale, Aug 04 2016 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(88)); for (n=1, 20000, write("b016516.txt", n, " ", x[n])); } \\ Harry J. Smith, May 24 2009