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

A020051
a(n) = floor(Gamma(n+9/11)/Gamma(9/11)).
2
1, 0, 1, 4, 16, 77, 448, 3059, 23919, 210929, 2070940, 22403814, 264772349, 3393900115, 46897528866, 694936109571, 10992625733214, 184875978240420, 3294153794102034, 61989985034465559, 1228528794319408360
OFFSET
0,4
LINKS
MAPLE
Digits := 64:f := proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
seq(floor(pochhammer(9/11, n)), n = 0..25); # G. C. Greubel, Nov 30 2019
MATHEMATICA
Floor[Pochhammer[9/11, Range[0, 25]]] (* G. C. Greubel, Nov 30 2019 *)
PROG
(PARI) x=9/11; vector(26, n, gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 30 2019
(Magma) [Floor(Gamma(n+9/11)/Gamma(9/11)): n in [0..25]]; // G. C. Greubel, Nov 30 2019
(Sage) [floor(rising_factorial(9/11, n)) for n in (0..25)] # G. C. Greubel, Nov 30 2019
CROSSREFS
Sequence in context: A367261 A364474 A159926 * A020006 A207653 A204208
KEYWORD
nonn
AUTHOR
STATUS
approved