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

A020049
a(n) = floor(Gamma(n+1/12)/Gamma(1/12)).
2
1, 0, 0, 0, 0, 2, 12, 73, 518, 4192, 38083, 384010, 4256112, 51428023, 672849973, 9475970454, 142929221023, 2298778304796, 39270796040272, 710146895061597, 13551969914092152, 272168729108017392, 5738224038694033364
OFFSET
0,6
LINKS
MAPLE
Digits := 64:f := proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
seq(floor(pochhammer(1/12, n)), n = 0..25); # G. C. Greubel, Dec 01 2019
MATHEMATICA
Floor[Pochhammer[1/12, Range[0, 25]]] (* G. C. Greubel, Dec 01 2019 *)
PROG
(PARI) x=1/12; vector(26, n, gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Dec 01 2019
(Magma) [Floor(Gamma(n+1/12)/Gamma(1/12)): n in [0..25]]; // G. C. Greubel, Dec 01 2019
(Sage) [floor(rising_factorial(1/12, n)) for n in (0..25)] # G. C. Greubel, Dec 01 2019
CROSSREFS
Sequence in context: A037515 A037718 A342054 * A020004 A078469 A014351
KEYWORD
nonn
AUTHOR
STATUS
approved