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

A020024
Nearest integer to Gamma(n + 1/9)/Gamma(1/9).
2
1, 0, 0, 0, 1, 3, 17, 104, 740, 6006, 54717, 553254, 6147264, 74450194, 976124761, 13774204959, 208143541601, 3353423725801, 57380805974819, 1039230152655058, 19860842917407766, 399423618672311730
OFFSET
0,6
COMMENTS
Gamma(n + 1/9)/Gamma(1/9) = 1, 1/9, 10/81, 190/729, 5320/6561, 196840/59049, 9054640/531441, 498005200/4782969, ... - R. J. Mathar, Sep 04 2016
LINKS
MAPLE
Digits := 64:f := proc(n, x) round(GAMMA(n+x)/GAMMA(x)); end;
MATHEMATICA
Table[Round[Gamma[n + 1/9]/Gamma[1/9]], {n, 0, 50}] (* G. C. Greubel, Feb 03 2018 *)
PROG
(PARI) for(n=0, 30, print1(round(gamma(n+1/9)/gamma(1/9)), ", ")) \\ G. C. Greubel, Feb 03 2018
(Magma) [Round(Gamma(n +1/9)/Gamma(1/9)): n in [0..30]]; // G. C. Greubel, Feb 03 2018
CROSSREFS
Sequence in context: A164816 A163064 A020069 * A264963 A036551 A162479
KEYWORD
nonn
AUTHOR
STATUS
approved