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 A053105 #18 Sep 08 2022 08:45:00 %S A053105 1,16,368,11040,408480,17973120,916629120,53164488960,3455691782400, %T A053105 248809808332800,19655974858291200,1690413837813043200, %U A053105 157208486916613017600,15720848691661301760000 %N A053105 a(n) = ((7*n+9)(!^7))/9(!^7), related to A034829 (((7*n+2)(!^7))/2 sept-, or 7-factorials). %C A053105 Row m=9 of the array A(8; m,n) := ((7*n+m)(!^7))/m(!^7), m >= 0, n >= 0. %H A053105 G. C. Greubel, <a href="/A053105/b053105.txt">Table of n, a(n) for n = 0..337</a> %F A053105 a(n) = ((7*n+9)(!^7))/9(!^7)= A034829(n+2)/9. %F A053105 E.g.f.: 1/(1-7*x)^(16/7). %t A053105 s=1;lst={s};Do[s+=n*s;AppendTo[lst, s], {n, 15, 5!, 7}];lst (* _Vladimir Joseph Stephan Orlovsky_, Nov 08 2008 *) %t A053105 CoefficientList[Series[1/(1-7x)^(16/7),{x,0,20}],x]Range[0,20]! (* _Harvey P. Dale_, Sep 11 2011 *) %o A053105 (PARI) x='x+O('x^30); Vec(serlaplace(1/(1-7*x)^(16/7))) \\ _G. C. Greubel_, Aug 16 2018 %o A053105 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(1/(1-7*x)^(16/7))); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, Aug 16 2018 %Y A053105 Cf. A051188, A045754(n+1), A034829-34(n+1), A053104-A053106 (rows m=0..10). %K A053105 easy,nonn %O A053105 0,2 %A A053105 _Wolfdieter Lang_