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

A020059
a(n) = floor(Gamma(n+1/11) / Gamma(1/11)).
2
1, 0, 0, 0, 0, 2, 13, 81, 576, 4664, 42405, 427908, 4745899, 57382239, 751185683, 10584889174, 159735600269, 2570291022522, 43928610203108, 794708493674422, 15171707606511701, 304813398276280545, 6428791672736098775
OFFSET
0,6
LINKS
FORMULA
a(n) ~ n^(n - 9/22)*e^(-n)*sqrt(2*Pi)/Gamma(1/11). - Robert Israel, Mar 04 2019
MAPLE
Digits := 64:f := proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
MATHEMATICA
Table[Floor[Pochhammer[1/11, n]], {n, 0, 30}] (* G. C. Greubel, Mar 04 2019 *)
PROG
(PARI) a(n) = floor(gamma(n+1/11)/gamma(1/11)) \\ Felix Fröhlich, Mar 04 2019
(Magma) [Floor(Gamma(n+1/11)/Gamma(1/11)): n in [0..30]]; // G. C. Greubel, Mar 04 2019
(Sage) [floor(gamma(n+1/11)/gamma(1/11)) for n in (0..30)] # G. C. Greubel, Mar 04 2019
CROSSREFS
Sequence in context: A037739 A037634 A074581 * A162772 A317892 A079752
KEYWORD
nonn
AUTHOR
STATUS
approved