cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A020014 Nearest integer to Gamma(n + 1/11)/Gamma(1/11).

This page as a plain text file.
%I A020014 #20 Sep 08 2022 08:44:44
%S A020014 1,0,0,0,1,3,13,81,577,4665,42405,427909,4745900,57382240,751185683,
%T A020014 10584889175,159735600270,2570291022522,43928610203109,
%U A020014 794708493674422,15171707606511701,304813398276280545,6428791672736098775
%N A020014 Nearest integer to Gamma(n + 1/11)/Gamma(1/11).
%H A020014 G. C. Greubel, <a href="/A020014/b020014.txt">Table of n, a(n) for n = 0..450</a>
%e A020014 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
%p A020014 f := proc(n) round(simplify(GAMMA(n+1/11)/GAMMA(1/11))); end:
%p A020014 map(f, [$0..60]); # Edited by _Robert Israel_, Mar 25 2018
%t A020014 Table[Round[Gamma[n + 1/11]/Gamma[1/11]], {n, 0,50}] (* _G. C. Greubel_, Jan 19 2018 *)
%o A020014 (PARI) for(n=0,30, print1(round(gamma(n+1/11)/gamma(1/11)), ", ")) \\ _G. C. Greubel_, Jan 19 2018
%o A020014 (Magma) [Round(Gamma(n +1/11)/Gamma(1/11)): n in [0..30]]; // _G. C. Greubel_, Jan 19 2018
%Y A020014 Cf. A020059, A020104, A010680 (decimal expansion of 1/11), A256192 (decimal expansion of Gamma(1/11)).
%K A020014 nonn
%O A020014 0,6
%A A020014 _Simon Plouffe_