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.
%I A020016 #16 Sep 23 2022 21:51:33 %S A020016 1,1,1,3,12,56,318,2134,16430,142945,1386570,14836295,173584650, %T A020016 2204525052,30201993206,443969300123,6970318011936,116404310799339, %U A020016 2060356301148292,38528662831473069,759014657780019468 %N A020016 Nearest integer to Gamma(n + 7/10)/Gamma(7/10). %C A020016 Gamma(n + 7/10)/Gamma(7/10) = 1, 7/10, 119/100, 3213/1000, 118881/10000, 5587407/100000, 318482199/1000000, ... - _R. J. Mathar_, Sep 04 2016 %H A020016 G. C. Greubel, <a href="/A020016/b020016.txt">Table of n, a(n) for n = 0..449</a> %p A020016 Digits := 64:f := proc(n,x) round(GAMMA(n+x)/GAMMA(x)); end; %t A020016 Table[Round[Gamma[n + 7/10]/Gamma[7/10]], {n, 0,50}] (* _G. C. Greubel_, Jan 19 2018 *) %o A020016 (PARI) for(n=0,30, print1(round(gamma(n+7/10)/gamma(7/10)), ", ")) \\ _G. C. Greubel_, Jan 19 2018 %o A020016 (Magma) [Round(Gamma(n +7/10)/Gamma(7/10)): n in [0..30]]; // _G. C. Greubel_, Jan 19 2018 %Y A020016 Cf. A020061, A020106. %K A020016 nonn %O A020016 0,4 %A A020016 _Simon Plouffe_