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.

A014514 a(n) = floor( Gamma(n+3/4) ).

Original entry on oeis.org

1, 0, 1, 4, 16, 78, 453, 3057, 23698, 207358, 2021746, 21733773, 255371835, 3255990905, 44769874946, 660355655453, 10400601573396, 174210076354396, 3092228855290534, 57979291036697518, 1145090997974775999, 23760638207976601980, 516793881023491093069
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

  • Magma
    [Floor(Gamma(n + 3/4)): n in [0..25]]; // Vincenzo Librandi, Aug 01 2025
  • Maple
    seq(floor(evalf(GAMMA(n+3/4),100)), n=0..24);
  • Mathematica
    a[n_] := Floor[Gamma[n + 3/4]]; Array[a, 21, 0] (* Amiram Eldar, Sep 20 2019 *)