OFFSET
0,5
COMMENTS
Row sums are 9*2^n-16 if n>0: 1, 2, 20, 56, 128, 272, 560,...
EXAMPLE
1;
1, 1;
1, 18, 1;
1, 27, 27, 1;
1, 36, 54, 36, 1;
1, 45, 90, 90, 45, 1;
1, 54, 135, 180, 135, 54, 1;
1, 63, 189, 315, 315, 189, 63, 1;
1, 72, 252, 504, 630, 504, 252, 72, 1;
1, 81, 324, 756, 1134, 1134, 756, 324, 81, 1;
1, 90, 405, 1080, 1890, 2268, 1890, 1080, 405, 90, 1;
MATHEMATICA
m = 4; p[x_, n_] := If[n == 0, 1, (2*m + 1)(x + 1)^n - 2*m*(x^n + 1)]
a = Table[CoefficientList[p[x, n], x], {n, 0, 10}];
Flatten[a]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula and Gary W. Adamson, Dec 01 2009
EXTENSIONS
Keyword:tabl and row sum formula added - The Assoc. Editors of the OEIS, Dec 05 2009
STATUS
approved