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.

A020024 Nearest integer to Gamma(n + 1/9)/Gamma(1/9).

This page as a plain text file.
%I A020024 #16 Sep 23 2022 22:03:50
%S A020024 1,0,0,0,1,3,17,104,740,6006,54717,553254,6147264,74450194,976124761,
%T A020024 13774204959,208143541601,3353423725801,57380805974819,
%U A020024 1039230152655058,19860842917407766,399423618672311730
%N A020024 Nearest integer to Gamma(n + 1/9)/Gamma(1/9).
%C A020024 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
%H A020024 G. C. Greubel, <a href="/A020024/b020024.txt">Table of n, a(n) for n = 0..450</a>
%p A020024 Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
%t A020024 Table[Round[Gamma[n + 1/9]/Gamma[1/9]], {n, 0, 50}] (* _G. C. Greubel_, Feb 03 2018 *)
%o A020024 (PARI) for(n=0,30, print1(round(gamma(n+1/9)/gamma(1/9)), ", ")) \\ _G. C. Greubel_, Feb 03 2018
%o A020024 (Magma) [Round(Gamma(n +1/9)/Gamma(1/9)): n in [0..30]]; // _G. C. Greubel_, Feb 03 2018
%Y A020024 Cf. A020069, A020114.
%K A020024 nonn
%O A020024 0,6
%A A020024 _Simon Plouffe_