|
Search: id:A137454
|
|
|
| A137454 |
|
A triangular sequence from coefficients of a three deep quadratic polynomial recursion: p(x,n)=x^2*p(x,n-1)+(-x-1)*p(x,n-2)+p(x,n-3). |
|
+0 1
|
|
| 1, -1, -1, 1, -1, -1, -1, -1, 1, 2, 2, -1, -2, -1, -1, 1, 0, 1, 5, 4, -1, -3, -1, -1, 1, -3, -5, -2, 3, 9, 6, -1, -4, -1, -1, 1, 2, 1, -10, -16, -6, 6, 14, 8, -1, -5, -1, -1, 1, 3, 9, 14, 4, -23, -34, -12, 10, 20, 10, -1, -6, -1, -1, 1, -5, -8, 10, 38, 45, 10, -44, -60, -20, 15, 27, 12, -1, -7, -1, -1, 1, -1, -11, -38, -42, 23, 101, 105, 20
(list; table; graph; listen)
|
|
|
OFFSET
|
1,10
|
|
|
COMMENT
|
Row sums are:
{1, -1, -3, 0, 5, 2, -8, -7, 11, 17, -12, -35, 6, 64, 17, -105, -75, 152, 197, -182, -424};
The row sums appear to be a saw tooth alternating sequence.
The sequence is designed so the first three terms are all ones
and it will have an odd number of coefficient elements.
|
|
FORMULA
|
p(x,-1)=0;p(x,0)=1;p(x,1)=x^2-x-2; p(x,n)=x^2*p(x,n-1)+(-x-1)*p(x,n-2)+p(x,n-3).
|
|
EXAMPLE
|
{1},
{-1, -1, 1},
{-1, -1, -1, -1, 1},
{2, 2, -1, -2, -1, -1, 1},
{0, 1, 5, 4, -1, -3, -1, -1, 1},
{-3, -5, -2, 3,9, 6, -1, -4, -1, -1, 1},
{2, 1, -10, -16, -6, 6,14, 8, -1, -5, -1, -1, 1},
{3, 9,14, 4, -23, -34, -12, 10, 20, 10, -1, -6, -1, -1, 1},
{-5, -8, 10, 38, 45, 10, -44, -60, -20, 15,27, 12, -1, -7, -1, -1, 1},
{-1, -11, -38, -42, 23, 101, 105,20, -75, -95, -30, 21, 35, 14, -1, -8, -1, -1,1},
{8, 22, 11, -55, -144, -131, 45, 215, 205, 35, -118, -140, -42, 28, 44, 16, -1, -9, -1, -1, 1}
|
|
MATHEMATICA
|
Clear[A, x, p] p[x, -1] = 0; p[x, 0] = 1; p[x, 1] = x^2 - x - 1; p[x_, n_] := x^2*p[x, n - 1] + (-x - 1)*p[x, n - 2] + p[x, n - 3]; Table[Expand[p[x, n]], {n, 0, 10}]; a1 = Table[CoefficientList[p[x, n], x], {n, 0, 10}]; Flatten[a1]
|
|
CROSSREFS
|
Cf. A084610.
Sequence in context: A084348 A085906 A090406 this_sequence A030613 A092984 A086600
Adjacent sequences: A137451 A137452 A137453 this_sequence A137455 A137456 A137457
|
|
KEYWORD
|
nonn,tabl,uned
|
|
AUTHOR
|
Roger L. Bagula and Gary Adamson (rlbagulatftn(AT)yahoo.com), Apr 18 2008
|
|
|
Search completed in 0.002 seconds
|