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.

A010240 Continued fraction for cube root of 10.

Original entry on oeis.org

2, 6, 2, 9, 1, 1, 2, 4, 1, 12, 1, 1, 1, 1, 57, 4, 2, 16, 1, 1, 1, 1, 9, 6, 2, 3, 1, 1, 12, 1, 4, 6, 2, 2, 1001, 3, 2, 6, 9, 1, 15, 1, 2, 1, 1, 27, 2, 1, 1, 21, 1, 11, 9, 2, 18, 15, 2, 25, 1, 1, 1, 1, 35, 30, 2, 4, 3, 10, 1, 3, 3, 4, 1, 1
Offset: 0

Views

Author

Keywords

Examples

			10^(1/3) = 2.1544346900318837... = 2 + 1/(6 + 1/(2 + 1/(9 + 1/(1 + ...)))). - _Harry J. Smith_, May 08 2009
		

Crossrefs

Cf. A010582 = Decimal expansion. - Harry J. Smith, May 08 2009

Programs

  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(10^(1/3)); for (n=1, 20001, write("b010240.txt", n-1, " ", x[n])); } \\ Harry J. Smith, May 08 2009