A020014 Nearest integer to Gamma(n + 1/11)/Gamma(1/11).
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
Keywords
Examples
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
Links
- G. C. Greubel, Table of n, a(n) for n = 0..450
Crossrefs
Programs
-
Magma
[Round(Gamma(n +1/11)/Gamma(1/11)): n in [0..30]]; // G. C. Greubel, Jan 19 2018
-
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 *)
-
PARI
for(n=0,30, print1(round(gamma(n+1/11)/gamma(1/11)), ", ")) \\ G. C. Greubel, Jan 19 2018