A014511 a(n) = floor( Gamma(n+1/3) ).
2, 0, 1, 2, 9, 40, 214, 1355, 9940, 82834, 773118, 7988887, 90540729, 1116669003, 14888920041, 213407853922, 3272253760146, 53446811415729, 926411397872639, 16984208960998389, 328361373245968867
Offset: 0
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.
Links
- Amiram Eldar, Table of n, a(n) for n = 0..450
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 255.
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 *)