OFFSET
0,5
COMMENTS
Gamma(n+1/4)/Gamma(1/4) = 1, 1/4, 5/16, 45/64, 585/256, 9945/1024, 208845/4096, 5221125/16384, 151412625/65536, ... - R. J. Mathar, Sep 04 2016
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..450
MAPLE
Digits := 64:f := proc(n, x) round(GAMMA(n+x)/GAMMA(x)); end;
seq( round(pochhammer(1/4, n)), n=0..30); # G. C. Greubel, Dec 06 2019
MATHEMATICA
Table[Round[Pochhammer[1/4, n]], {n, 0, 30}] (* G. C. Greubel, Dec 06 2019 *)
PROG
(PARI) x=1/4; vector(30, n, round(gamma(n-1+x)/gamma(x)) ) \\ G. C. Greubel, Dec 06 2019
(Magma) [Round(Gamma(n+1/4)/Gamma(1/4)): n in [0..30]]; // G. C. Greubel, Dec 06 2019
(Sage) [round(rising_factorial(1/4, n)) for n in (0..30)] # G. C. Greubel, Dec 06 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved