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

A020075
a(n) = floor( Gamma(n+5/7)/Gamma(5/7) ).
7
1, 0, 1, 3, 12, 58, 332, 2232, 17225, 150103, 1458149, 15623031, 183012659, 2326875239, 31911431853, 469553925838, 7378704548888, 123329776031414, 2184698889699346, 40885079221516335, 806020133224179176
OFFSET
0,4
LINKS
MAPLE
Digits := 64:f := proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
seq(floor(pochhammer(5/7, n)), n = 0..25); # G. C. Greubel, Nov 17 2019
MATHEMATICA
Floor[Pochhammer[5/7, Range[0, 25]]] (* G. C. Greubel, Nov 17 2019 *)
PROG
(PARI) vector(26, n, my(x=5/7); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 17 2019
(Magma) [Floor(Gamma(n+5/7)/Gamma(5/7)): n in [0..25]]; // G. C. Greubel, Nov 17 2019
(Sage) [floor(rising_factorial(5/7, n)) for n in (0..25)] # G. C. Greubel, Nov 17 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved