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.

A059742 Decimal expansion of e + Pi.

Original entry on oeis.org

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

Views

Author

Fabian Rothelius, Feb 10 2001

Keywords

Comments

It is not presently known if this number is rational or irrational.

Examples

			5.859874482048838473822930854632165381954416493075065395941912220031893...
		

Crossrefs

Cf. A001113, A000796, A058651 (continued fraction).

Programs

  • Maple
    Digits := 200: with(numtheory): it := evalf((Pi+exp(1))/10, 200): for i from 1 to 20 0 do printf(`%d,`,floor(10*it)): it := 10*it-floor(10*it): od:
  • Mathematica
    RealDigits[E + Pi, 10, 105][[1]] (* Robert G. Wilson v, Sep 24 2004 *)
  • PARI
    { default(realprecision, 20080); x=Pi+exp(1); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b059742.txt", n, " ", d)); } \\ Harry J. Smith, May 31 2009

Extensions

More terms from James Sellers, Feb 13 2001