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

A020014
Nearest integer to Gamma(n + 1/11)/Gamma(1/11).
1
1, 0, 0, 0, 1, 3, 13, 81, 577, 4665, 42405, 427909, 4745900, 57382240, 751185683, 10584889175, 159735600270, 2570291022522, 43928610203109, 794708493674422, 15171707606511701, 304813398276280545, 6428791672736098775
OFFSET
0,6
LINKS
EXAMPLE
Gamma(n + 1/11)/Gamma(1/11) = 1, 1/11, 12/121, 276/1331, 9384/14641, 422280/161051, 23647680/1771561, ... - R. J. Mathar, Sep 04 2016
MAPLE
f := proc(n) round(simplify(GAMMA(n+1/11)/GAMMA(1/11))); end:
map(f, [$0..60]); # Edited by Robert Israel, Mar 25 2018
MATHEMATICA
Table[Round[Gamma[n + 1/11]/Gamma[1/11]], {n, 0, 50}] (* G. C. Greubel, Jan 19 2018 *)
PROG
(PARI) for(n=0, 30, print1(round(gamma(n+1/11)/gamma(1/11)), ", ")) \\ G. C. Greubel, Jan 19 2018
(Magma) [Round(Gamma(n +1/11)/Gamma(1/11)): n in [0..30]]; // G. C. Greubel, Jan 19 2018
CROSSREFS
Cf. A020059, A020104, A010680 (decimal expansion of 1/11), A256192 (decimal expansion of Gamma(1/11)).
Sequence in context: A183278 A331643 A074514 * A184972 A160882 A135921
KEYWORD
nonn
AUTHOR
STATUS
approved