OFFSET
0,5
COMMENTS
Gamma(n+1/3)/Gamma(1/3) = {1, 1/3, 4/9, 28/27, 280/81, 3640/243, 58240/729, 1106560/2187, ...}. - R. J. Mathar, Sep 04 2016
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..449
MAPLE
Digits := 64:f := proc(n, x) round(GAMMA(n+x)/GAMMA(x)); end;
seq(round(pochhammer(1/3, n)), n = 0..25); # G. C. Greubel, Dec 01 2019
MATHEMATICA
Round[Pochhammer[1/3, Range[0, 25]]] (* G. C. Greubel, Dec 01 2019 *)
PROG
(PARI) x=1/3; vector(26, n, round(gamma(n-1+x)/gamma(x)) ) \\ G. C. Greubel, Dec 01 2019
(Magma) [Round(Gamma(n+1/3)/Gamma(1/3)): n in [0..25]]; // G. C. Greubel, Dec 01 2019
(Sage) [round(rising_factorial(1/3, n)) for n in (0..25)] # G. C. Greubel, Dec 01 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved