[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A020002
Nearest integer to Gamma(n + 7/12)/Gamma(7/12).
2
1, 1, 1, 2, 9, 39, 219, 1440, 10923, 93755, 898484, 9508956, 110145409, 1385996396, 18826451052, 274552411176, 4278441740820, 70950825535270, 1247552015661833, 23183674957715736, 454013634588599834
OFFSET
0,4
COMMENTS
a(n) equals A020047(n) or A020092(n). - R. J. Mathar, May 18 2007
LINKS
MAPLE
Digits := 64:f := proc(n, x) round(GAMMA(n+x)/GAMMA(x)); end;
MATHEMATICA
Table[Round[Gamma[n + 7/12]/Gamma[7/12]], {n, 0, 29}] (* G. C. Greubel, Jan 19 2018 *)
PROG
(PARI) for(n=0, 30, print1(round(gamma(n+7/12)/gamma(7/12)), ", ")) \\ G. C. Greubel, Jan 19 2018
(Magma) [Round(Gamma(n +7/12)/Gamma(7/12)): n in [0..30]]; // G. C. Greubel, Jan 19 2018
CROSSREFS
Sequence in context: A151017 A151018 A096359 * A346687 A120700 A075873
KEYWORD
nonn
AUTHOR
STATUS
approved