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.

A014511 a(n) = floor( Gamma(n+1/3) ).

Original entry on oeis.org

2, 0, 1, 2, 9, 40, 214, 1355, 9940, 82834, 773118, 7988887, 90540729, 1116669003, 14888920041, 213407853922, 3272253760146, 53446811415729, 926411397872639, 16984208960998389, 328361373245968867
Offset: 0

Views

Author

Keywords

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 255.

Crossrefs

Programs

  • Maple
    seq(floor(evalf(GAMMA(n+1/3),100)), n=0..24);
  • Mathematica
    a[n_] := Floor[Gamma[n + 1/3]]; Array[a, 21, 0] (* Amiram Eldar, Sep 20 2019 *)