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.

A014513 a(n) = floor( Gamma(n+1/4) ).

Original entry on oeis.org

3, 0, 1, 2, 8, 35, 184, 1155, 8376, 69106, 639232, 6552134, 73711509, 902965985, 11964299312, 170491265198, 2599991794272, 42249866656927, 728810199831991, 13300786146933842, 256040133328476465
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/4),100)), n=0..24);
  • Mathematica
    a[n_] := Floor[Gamma[n + 1/4]]; Array[a, 21, 0] (* Amiram Eldar, Sep 20 2019 *)