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.

A006526 Egyptian fraction for 1/e.

Original entry on oeis.org

3, 29, 15786, 513429610, 339840390654894740, 383515880462620946584018566350380249, 226890280396768133952782550246970728734549546771915172071782710229538300
Offset: 0

Views

Author

Keywords

References

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

Crossrefs

Cf. A068985 (1/e).

Programs

  • Mathematica
    a = {}; k = N[1/E, 1000]; Do[s = Ceiling[1/k]; AppendTo[a, s]; k = k - 1/s, {n, 1, 10}]; a (* Artur Jasinski, Sep 22 2008 *)