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

A020010
Nearest integer to Gamma(n + 5/11)/Gamma(5/11).
2
1, 0, 1, 2, 6, 25, 136, 879, 6554, 55412, 523897, 5477110, 62737807, 781370863, 10512989797, 151960488890, 2348480282846, 38643175563195, 674499064375772, 12447573642571061, 242161887228200640, 4953311329667740359
OFFSET
0,4
COMMENTS
Gamma(n + 5/11)/Gamma(5/11) = 1, 5/11, 80/121, 2160/1331, 82080/14641, 4021920/161051, 241315200/1771561, ... - 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 + 5/11]/Gamma[5/11]], {n, 0, 50}] (* G. C. Greubel, Jan 19 2018 *)
PROG
(PARI) for(n=0, 30, print1(round(gamma(n+5/11)/gamma(5/11)), ", ")) \\ G. C. Greubel, Jan 19 2018
(Magma) [Round(Gamma(n +5/11)/Gamma(5/11)): n in [0..30]]; // G. C. Greubel, Jan 19 2018
CROSSREFS
Sequence in context: A124373 A010787 A008933 * A375505 A102812 A020100
KEYWORD
nonn
AUTHOR
STATUS
approved