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.

A005534 Decimal expansion of fifth root of 5.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

Fifth root of 5 = 5^(1/5). - Harry J. Smith, May 10 2009

Examples

			1.379729661461214832390063464216017692855649877977606121772737674791506....
		

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A002951 (continued fraction). - Harry J. Smith, May 10 2009

Programs

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