OFFSET
3,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 3..1000
FORMULA
a(n) = (n-2)*(n-1)*(n)*stirling1(n+2,n)/3!.
G.f.: x^3*(35 + 10*x^2 + 60*x)/(1 - x)^8.
MAPLE
nmax:=28; mmax:=nmax: with(combinat, stirling1): for n from 1 to nmax do for m from 1 to n do a(n, m):=(-1)^(n+m)*m*(m+1)*(m+2)*stirling1(n+2, m+2)/3! od; od: seq(a(n, n-2), n=3..nmax);
MATHEMATICA
CoefficientList[Series[x^3 (35 + 60 x + 10 x^2)/(1 - x)^8, {x, 0, 50}], x] (* G. C. Greubel, Aug 08 2017 *)
PROG
(PARI) x='x+O('x^50); Vec(x^3*(35 + 60*x + 10*x^2)/(1-x)^8) \\ G. C. Greubel, Aug 08 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Johannes W. Meijer, Aug 13 2009
STATUS
approved