|
| |
|
|
A136093
|
|
A generalized ( Shabat) type tree transformed Chebyshev recursion where: P(x,n)->C*P(c*x+d,n)+D: C=-1;c=-1;D=1;d=1: with substitution: x-1->x; as a triangular sequence of coefficients.
|
|
1
| |
|
|
1, 0, 1, -1, -1, 1, 0, -3, -1, 1, 1, 0, -4, -1, 1, 0, 3, 1, -5, -1, 1, -1, -1, 7, 2, -6, -1, 1, 0, -5, -2, 12, 3, -7, -1, 1, 1, 0, -12, -4, 18, 4, -8, -1, 1, 0, 5, 2, -24, -7, 25, 5, -9, -1, 1, -1, -1, 17, 6, -42, -11, 33, 6, -10, -1, 1
(list; table; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,8
|
|
|
COMMENTS
| Row sum is a repeating sequence:
{1, 1, -1, -3, -3, -1, 1, 1, -1, -3, -3}
|
|
|
REFERENCES
| http : // logic.pdmi.ras.ru/~yumat/personaljournal/chebyshev/chebysh.htm Quote:"It is easy to see that if P is a generalized Chebyshev Polynomial, then so is polynomial CP(cz + d) + D, moreover, it represents the same tree (of course, provided that both C and c are different from zero)."
|
|
|
FORMULA
| p(x,0)=1;p(x,1)=x; p(x,n)=-x+x*p(x,n-1)-p(x,n-2)
|
|
|
EXAMPLE
| {1},
{0, 1},
{-1, -1, 1},
{0, -3, -1, 1},
{1, 0, -4, -1, 1},
{0, 3, 1, -5, -1, 1},
{-1, -1, 7, 2, -6, -1, 1},
{0, -5, -2, 12, 3, -7, -1, 1},
{1, 0, -12, -4, 18, 4, -8, -1, 1},
{0, 5, 2, -24, -7,25, 5, -9, -1, 1},
{-1, -1, 17, 6, -42, -11, 33, 6, -10, -1, 1}
|
|
|
MATHEMATICA
| Clear[B, a] B[x, 0] = 1; B[x, 1] = x; B[x_, n_] := B[x, n] = -x + x*B[x, n - 1] - B[x, n - 2]; Table[ExpandAll[B[x, n]], {n, 0, 10}]; a = Table[CoefficientList[B[x, n], x], {n, 0, 10}]; Flatten[a]
|
|
|
CROSSREFS
| Sequence in context: A179742 A104608 A110245 * A206831 A134108 A176851
Adjacent sequences: A136090 A136091 A136092 * A136094 A136095 A136096
|
|
|
KEYWORD
| uned,tabl,sign
|
|
|
AUTHOR
| Roger L. Bagula (rlbagultftn(AT)yahoo.com), Mar 15 2008
|
| |
|
|