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.

A014512 a(n) = floor( Gamma(n+2/3) ).

Original entry on oeis.org

1, 0, 1, 4, 14, 68, 389, 2593, 19884, 172328, 1665837, 17768938, 207304278, 2625854188, 35886673906, 526337883959, 8245960182038, 137432669700633, 2427977164711192, 45322240407942257, 891337394689531069
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+2/3),100)), n=0..24);
  • Mathematica
    a[n_] := Floor[Gamma[n + 2/3]]; Array[a, 21, 0] (* Amiram Eldar, Sep 20 2019 *)