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.

A062360 a(n) = floor(e^(n*Pi)).

Original entry on oeis.org

1, 23, 535, 12391, 286751, 6635623, 153552935, 3553321280, 82226315585, 1902773895292, 44031505860632, 1018919543279304, 23578503968558226, 545622913077172100, 12626092124920479897, 292176517015939695007
Offset: 0

Views

Author

Jason Earls, Jul 06 2001

Keywords

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 2.

Crossrefs

Cf. A121905 (ceiling).

Programs

  • PARI
    for(n=0,23,print(floor(exp(1)^(n*Pi))))
    
  • PARI
    { default(realprecision, 200); e=exp(1); for (n=0, 100, write("b062360.txt", n, " ", floor(e^(n*Pi))) ) } \\ Harry J. Smith, Aug 06 2009