login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A142720
A triangle sequence of coefficients of odd sum polynomials: p(x,n)=x^(2*n - 1) - Sum[x^(2*i + 1), {i, 0, n - 1}] - 1.
0
-1, -1, -1, -1, -1, 0, -1, -1, -1, 0, -1, 0, -1, -1, -1, 0, -1, 0, -1, 0, -1, -1, -1, 0, -1, 0, -1, 0, -1, 0, -1, -1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, -1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, -1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, -1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1
OFFSET
1,1
COMMENTS
Row sums are:
{-1, -2, -3, -4, -5, -6, -7, -8, -9, -10}.
FORMULA
p(x,n)=x^(2*n - 1) - Sum[x^(2*i + 1), {i, 0, n - 1}] - 1; t(n,m)=coefficients(p)x,n).
EXAMPLE
{-1},
{-1, -1},
{-1, -1, 0, -1},
{-1, -1, 0, -1, 0, -1},
{-1, -1, 0, -1, 0, -1, 0, -1},
{-1, -1, 0, -1, 0, -1, 0, -1, 0, -1},
{-1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1},
{-1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1},
{-1, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1, 0, -1},
{-1, -1, 0, -1, 0, -1, 0, -1, 0, -1,0, -1, 0, -1, 0, -1, 0, -1}
MATHEMATICA
p[x_, n_] := x^(2*n - 1) - Sum[x^(2*i + 1), {i, 0, n - 1}] - 1; Table[Expand[p[x, n]], {n, 1, 10}]; Table[CoefficientList[p[x, n], x], {n, 1, 10}]; Flatten[%] b = Table[Apply[Plus, Re[CoefficientList[p[x, n], x]]], {n, 1, 10}]
CROSSREFS
Sequence in context: A076699 A378442 A373851 * A196308 A091862 A351564
KEYWORD
uned,sign
AUTHOR
STATUS
approved