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.

A014510 a(n) = floor( Gamma(n+1/2) ).

Original entry on oeis.org

1, 0, 1, 3, 11, 52, 287, 1871, 14034, 119292, 1133278, 11899423, 136843365, 1710542068, 23092317922, 334838609873, 5189998453040, 85634974475162, 1498612053315336, 27724322986333718, 540624298233507504
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/2),100)), n=0..24);
  • Mathematica
    a[n_] := Floor[Gamma[n + 1/2]]; Array[a, 21, 0] (* Amiram Eldar, Sep 20 2019 *)

Formula

a(n)=floor((2n-1)!!/2^n*sqrt(Pi)) where (2n-1)!!=prod(k=1, n, 2*k-1); asymptotically a(n)=n!/sqrt(n)*(1-1/(8n)+1/(128n^2)-5/(1024n^3)+O(1/n^4)) - Benoit Cloitre, Apr 29 2003