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.

A010520 Decimal expansion of square root of 68.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

Continued fraction expansion is 8 followed by {4, 16} repeated. - Harry J. Smith, Jun 08 2009

Examples

			8.246211251235321099642819711948154050294398450747240868797267146189908...
		

Crossrefs

Cf. A040059 Continued fraction.

Programs

  • Mathematica
    RealDigits[N[68^(1/2),200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 22 2012 *)
  • PARI
    { default(realprecision, 20080); x=sqrt(68); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010520.txt", n, " ", d)); } \\ Harry J. Smith, Jun 08 2009