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”).

A020001
Nearest integer to Gamma(n + 11/12)/Gamma(11/12).
2
1, 1, 2, 5, 20, 99, 584, 4038, 31970, 285070, 2826941, 30860774, 367757553, 4750201727, 66106974037, 986095696055, 15695356495548, 265513114049684, 4757109960056837, 89988663411075165, 1792274212937247027, 37488402287270750315, 821620816796017277740
OFFSET
0,3
COMMENTS
Gamma(n + 11/12)/Gamma(11/12) = 1, 11/12, 253/144, 8855/1728, 416185/20736, 24554915/248832, 1743398965/2985984, 144702114095/35831808, ...
LINKS
FORMULA
a(n) = round(Product_{k=0..n-1} (k+11/12)). - Sean A. Irvine, Apr 14 2019
MAPLE
Digits := 64:f := proc(n, x) round(GAMMA(n+x)/GAMMA(x)); end:
seq(f(n, 11/12), n=0..22);
MATHEMATICA
Table[Round[Gamma[n + #]/Gamma[#]] &[11/12], {n, 0, 20}] (* Michael De Vlieger, Apr 18 2016 *)
PROG
(PARI) a(n) = round(gamma(n+11/12)/gamma(11/12)); \\ Michel Marcus, Apr 19 2016
(Magma) [Round(Gamma(n+11/12)/Gamma(11/12)): n in [1..30]]; // G. C. Greubel, Jan 19 2018
CROSSREFS
Sequence in context: A020005 A259834 A074415 * A348597 A370699 A039909
KEYWORD
nonn
AUTHOR
STATUS
approved