OFFSET
0,2
COMMENTS
I think the rows are indexed by t = 0, 1, 2, ..., and in each row we expand the polynomial in powers of x. - N. J. A. Sloane, Dec 14 2010
Row sums are 1, 6, 36, 210, 1080, 5040, 60480, 1315440, 5443200, -558835200, 718502400,...
EXAMPLE
{1},
{3, 3},
{0, 24, 12},
{-30, 0, 180, 60},
{0, -720, 0, 1440, 360},
{2520, 0, -12600, 0, 12600, 2520},
{0, 120960, 0, -201600, 0, 120960, 20160},
{-771120, 0,3810240, 0, -3175200, 0, 1270080, 181440},
{0, -61689600, 0, 101606400, 0, -50803200, 0, 14515200, 1814400},
MATHEMATICA
p[t_] = -Exp[x*t](2*(1 - 2*Exp[t]) - 2*Exp[t])/(1 + Exp[t]);
a = Table[ CoefficientList[(n!*(n + 2)!/4)*SeriesCoefficient[
Series[p[t], {t, 0, 30}], n], x], {n, 0, 10}];
Flatten[a]
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Roger L. Bagula, Dec 12 2010
EXTENSIONS
I rewrote the definition. - N. J. A. Sloane, Dec 14 2010
STATUS
approved