|
| |
|
|
A136261
|
|
Differentiating A122188: the coefficients of count down polynomials found by differentiating the Bonacci polynomials.
|
|
0
| |
|
|
-1, -1, 2, 1, 2, -3, -1, -2, -3, 4, 1, 2, 3, 4, -5, -1, -2, -3, -4, -5, 6, 1, 2, 3, 4, 5, 6, -7, -1, -2, -3, -4, -5, -6, -7, 8, 1, 2, 3, 4, 5, 6, 7, 8, -9, -1, -2, -3, -4, -5, -6, -7, -8, -9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, -11
(list; table; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,3
|
|
|
COMMENTS
| Row sums are:
{-1, 1, 0, -2, 5, -9, 14, -20, 27, -35, 44}
In the absolute value, this sequence also computes A002260.
|
|
|
FORMULA
| b(n,x)=(-1)^n*(x^n - Sum[x^m, {m, 0, n - 1}]); p(x,n)=db(x,n+1)/dx
|
|
|
EXAMPLE
| {-1},
{-1, 2},
{1, 2, -3},
{-1, -2, -3, 4},
{1, 2, 3, 4, -5},
{-1, -2, -3, -4, -5, 6},
{1, 2, 3, 4, 5, 6, -7},
{-1, -2, -3, -4, -5, -6, -7, 8},
{1, 2,3, 4, 5, 6, 7, 8, -9},
{-1, -2, -3, -4, -5, -6, -7, -8, -9, 10},
{1, 2,3, 4, 5, 6, 7, 8, 9, 10, -11}
|
|
|
MATHEMATICA
| Clear[B, x, n] B[x, 0] = 1; B[x, 1] = -x + 1; B[x_, n_] := B[x, n] = If[n > 1, (-1)^n*(x^n - Sum[x^m, {m, 0, n - 1}])]; P[x_, n_] := D[B[x, n + 1], x]; Table[ExpandAll[P[x, n]], {n, 0, 10}]; a = Table[CoefficientList[P[x, n], x], {n, 0, 10}]; Flatten[a] Table[Apply[Plus, CoefficientList[P[x, n], x]], {n, 0, 10}];
|
|
|
CROSSREFS
| Cf. A002260, A122188, A107335, A129080.
Sequence in context: A113126 A138060 A023121 * A140756 A002260 A194905
Adjacent sequences: A136258 A136259 A136260 * A136262 A136263 A136264
|
|
|
KEYWORD
| uned,tabl,sign
|
|
|
AUTHOR
| Roger L. Bagula and Gary Adamson (rlbagulatftn(AT)yahoo.com), Mar 18 2008
|
| |
|
|