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.

A060302 Decimal expansion of (Pi^4 + Pi^5)^(1/6).

Original entry on oeis.org

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

Views

Author

Jason Earls, Mar 26 2001

Keywords

Comments

Approximation to e, accurate to 7 decimal places.

Crossrefs

Programs

  • Mathematica
    RealDigits[Surd[Pi^4 + Pi^5, 6], 10, 120][[1]] (* Amiram Eldar, Jun 13 2023 *)
  • PARI
    default(realprecision, 20080); x=(Pi^4 + Pi^5)^(1/6); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b060302.txt", n, " ", d)); \\ Harry J. Smith, Jul 03 2009