A014517 Nearest integer to Gamma(n+2/3).
1, 1, 2, 4, 15, 69, 389, 2594, 19884, 172328, 1665838, 17768938, 207304278, 2625854188, 35886673906, 526337883960, 8245960182038, 137432669700634, 2427977164711192, 45322240407942258, 891337394689531069
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(round(evalf(GAMMA(n+2/3),100)), n=0..24) ];
-
Mathematica
a[n_] := Round[Gamma[n + 2/3]]; Array[a, 21, 0] (* Amiram Eldar, Sep 20 2019 *)
-
PARI
a(n) = round(gamma(n + 2/3)); \\ Michel Marcus, Nov 05 2018
Extensions
a(15), a(17), and a(19) corrected by Sean A. Irvine, Nov 04 2018