OFFSET
0,2
COMMENTS
Row m=5 of the array A(5; m,n) := ((4*n+m)(!^4))/m(!^4), m >= 0, n >= 0.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..363
FORMULA
a(n) = ((4*n+5)(!^4))/5(!^4).
E.g.f.: 1/(1-4*x)^(9/4).
MATHEMATICA
s=1; lst={s}; Do[s+=n*s; AppendTo[lst, s], {n, 8, 5!, 4}]; lst (* Vladimir Joseph Stephan Orlovsky, Nov 08 2008 *)
With[{nn = 30}, CoefficientList[Series[1/(1 - 4*x)^(9/4), {x, 0, nn}], x]*Range[0, nn]!] (* G. C. Greubel, Aug 15 2018 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(1/(1-4*x)^(9/4))) \\ G. C. Greubel, Aug 15 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(1/(1-4*x)^(9/4))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Aug 15 2018
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
STATUS
approved