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.

A010491 Decimal expansion of square root of 37.

Original entry on oeis.org

6, 0, 8, 2, 7, 6, 2, 5, 3, 0, 2, 9, 8, 2, 1, 9, 6, 8, 8, 9, 9, 9, 6, 8, 4, 2, 4, 5, 2, 0, 2, 0, 6, 7, 0, 6, 2, 0, 8, 4, 9, 7, 0, 0, 9, 4, 7, 8, 6, 4, 1, 1, 1, 8, 6, 4, 1, 9, 1, 5, 3, 0, 4, 6, 4, 8, 6, 3, 3, 2, 7, 2, 5, 3, 1, 8, 9, 1, 0, 2, 3, 9, 8, 0, 3, 0, 6, 6, 4, 2, 7, 9, 5, 7, 8, 4, 8, 6, 6
Offset: 1

Views

Author

Keywords

Comments

Continued fraction expansion is 6 followed by {12} repeated. - Harry J. Smith, Jun 04 2009

Examples

			6.082762530298219688999684245202067062084970094786411186419153046486332....
		

Crossrefs

Cf. A040030 (continued fraction).

Programs

  • Mathematica
    RealDigits[N[Sqrt[37],200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Feb 24 2011 *)
  • PARI
    default(realprecision, 20080); x=sqrt(37); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010491.txt", n, " ", d));  \\ Harry J. Smith, Jun 04 2009