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 A004995 #14 Sep 08 2022 08:44:33 %S A004995 1,-30,-90,-1260,-24570,-560196,-14004900,-372130200,-10326613050, %T A004995 -296029574100,-8703269478540,-261098084356200,-7963491572864100, %U A004995 -246255662483951400,-7704284297712193800,-243455383807705324080 %N A004995 a(n) = (6^n/n!) * Product_{k=0..n-1} (6*k - 5). %H A004995 G. C. Greubel, <a href="/A004995/b004995.txt">Table of n, a(n) for n = 0..635</a> %F A004995 G.f.: (1 - 36*x)^(5/6). %F A004995 a(n) ~ -(5/6)*Gamma(1/6)^-1*n^(-11/6)*6^(2*n)*(1 + (55/72)*n^-1 + ...). - Joe Keane (jgk(AT)jgk.org), Nov 24 2001 %F A004995 a(n) = 6^(2*n) * binomial(n-11/6, n). - _G. C. Greubel_, Aug 20 2019 %F A004995 D-finite with recurrence: n*a(n) +6*(-6*n+11)*a(n-1)=0. - _R. J. Mathar_, Jan 17 2020 %p A004995 seq(6^n*product(6*k-5, k = 0..n-1)/n!, n = 0..20); # _G. C. Greubel_, Aug 20 2019 %t A004995 Table[6^(2*n)*Pochhammer[-5/6, n]/n!, {n,0,20}] (* _G. C. Greubel_, Aug 20 2019 *) %o A004995 (PARI) vector(20, n, n--; 6^n*prod(j=0,n-1, 6*j-5)/n! ) \\ _G. C. Greubel_, Aug 20 2019 %o A004995 (Magma) [1] cat [6^n*(&*[6*k-5: k in [0..n-1]])/Factorial(n): n in [1..20]]; // _G. C. Greubel_, Aug 20 2019 %o A004995 (Sage) [6^(2*n)*rising_factorial(-5/6, n)/factorial(n) for n in (0..20)] # _G. C. Greubel_, Aug 20 2019 %o A004995 (GAP) List([0..20], n-> 6^n*Product([0..n-1], k-> 6*k-5)/Factorial(n) ); # _G. C. Greubel_, Aug 20 2019 %K A004995 sign,easy %O A004995 0,2 %A A004995 Joe Keane (jgk(AT)jgk.org)