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.

A020020 Nearest integer to Gamma(n + 7/9)/Gamma(7/9).

This page as a plain text file.
%I A020020 #16 Sep 23 2022 21:51:51
%S A020020 1,1,1,4,15,69,401,2715,21115,185345,1812263,19532171,230045569,
%T A020020 2939471158,40499380397,598490843643,9442855533027,158430131720783,
%U A020020 2816535675036147,52888281009012092,1046012668844905826
%N A020020 Nearest integer to Gamma(n + 7/9)/Gamma(7/9).
%C A020020 Gamma(n + 7/9)/Gamma(7/9) = 1, 7/9, 112/81, 2800/729, 95200/6561, 4093600/59049, 212867200/531441, 12984899200/4782969, ... - _R. J. Mathar_, Sep 04 2016
%H A020020 G. C. Greubel, <a href="/A020020/b020020.txt">Table of n, a(n) for n = 0..445</a>
%p A020020 Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end;
%t A020020 Table[Round[Gamma[n + 7/9]/Gamma[7/9]], {n, 0, 50}] (* _G. C. Greubel_, Feb 03 2018 *)
%o A020020 (PARI) for(n=0,30, print1(round(gamma(n+7/9)/gamma(7/9)), ", ")) \\ _G. C. Greubel_, Feb 03 2018
%o A020020 (Magma) [Round(Gamma(n +7/9)/Gamma(7/9)): n in [0..30]]; // _G. C. Greubel_, Feb 03 2018
%Y A020020 Cf. A020065, A020110.
%K A020020 nonn
%O A020020 0,4
%A A020020 _Simon Plouffe_