OFFSET
0,5
COMMENTS
Row sums are: 0, 0, 4, 6, 4, 10, 2, 14, 4, 6, 2, 22, 2, 26, 2, 2, 4, 34, 2, 38, 2,...
FORMULA
T(n,k) = T(n,n-k) .
EXAMPLE
0; # x+x^0*(1/x) = x+1/x
0, 0; # x-1+x*(1/x-1) = 0
1, 2, 1; # x+1+x^2*(1/x+1) = 1+2*x+x^2
1, 2, 2, 1;
1, 0, 2, 0, 1;
1, 2, 2, 2, 2, 1;
1, -1, 1, 0, 1, -1, 1;
1, 2, 2, 2, 2, 2, 2, 1;
1, 0, 0, 0, 2, 0, 0, 0, 1;
1, 0, 0, 2, 0, 0, 2, 0, 0, 1;
1, -1, 1, -1, 1, 0, 1, -1, 1, -1, 1;
MATHEMATICA
Clear[p, x, n, m, a]; p[x_, n_] := Cyclotomic[n, x] + ExpandAll[x^n*Cyclotomic[n, 1/x]]; Table[p[x, n], {n, 0, 10}]; a = Table[CoefficientList[p[x, n], x], {n, 0, 10}]; Flatten[a]
CROSSREFS
KEYWORD
tabl,sign
AUTHOR
Roger L. Bagula and Gary W. Adamson, Jul 22 2008
EXTENSIONS
All entries replaced to comply with the definition and examples - The Assoc. Eds. of the OEIS, Oct 12 2010
STATUS
approved