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

A020084
a(n) = floor( Gamma(n + 2/5)/Gamma(2/5) ).
5
1, 0, 0, 1, 4, 20, 108, 694, 5142, 43193, 406016, 4222569, 48137291, 596902408, 7998492273, 115178288736, 1773745646539, 29089428603255, 506156057696641, 9313271461618195, 180677466355392995, 3685820313650017111
OFFSET
0,5
LINKS
MAPLE
Digits:= 64: x:=2/5: f:= proc(n, x) trunc(GAMMA(n+x)/GAMMA(x)); end;
seq(floor(pochhammer(2/5, n)), n = 0..25); # G. C. Greubel, Nov 17 2019
MATHEMATICA
Floor[Pochhammer[2/5, Range[0, 25]]] (* G. C. Greubel, Nov 19 2018 *)
PROG
(PARI) vector(26, n, my(x=2/5); gamma(n-1+x)\gamma(x) ) \\ G. C. Greubel, Nov 19 2018
(Magma) [Truncate(Gamma(n + 2/5)/Gamma(2/5)): n in [0..30]]; // G. C. Greubel, Nov 19 2018
(Sage) [int(gamma(n + 2/5)/gamma(2/5)) for n in range(30)] # G. C. Greubel, Nov 19 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved