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.

A010531 Decimal expansion of square root of 79.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

Continued fraction expansion is 8 followed by {1, 7, 1, 16} repeated. - Harry J. Smith, Jun 09 2009

Examples

			8.888194417315588850091441675408727817076450603729526298354720116376100...
		

Crossrefs

Cf. A010157 Continued fraction.

Programs

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