login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A137430 Triangular sequence from coefficients of a cumulative sum of Chebyshev T(x,n) polynomials (A053120): p(x,n)=p(x,n-1)+T(x,n). 0
1, 1, 1, 0, 1, 2, 0, -2, 2, 4, 1, -2, -6, 4, 8, 1, 3, -6, -16, 8, 16, 0, 3, 12, -16, -40, 16, 32, 0, -4, 12, 40, -40, -96, 32, 64, 1, -4, -20, 40, 120, -96, -224, 64, 128, 1, 5, -20, -80, 120, 336, -224, -512, 128, 256, 0, 5, 30, -80, -280, 336, 896, -512, -1152, 256, 512 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
Row sums are: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}
LINKS
FORMULA
p(x,n)=p(x,n-1)+T(x,n); out_n,m=Coefficients(p(x,n)).
EXAMPLE
{1},
{1, 1},
{0, 1, 2},
{0, -2, 2, 4},
{1, -2, -6, 4, 8},
{1, 3, -6, -16, 8, 6},
{0, 3, 12, -16, -40, 16, 32},
{0, -4, 12, 40, -40, -96, 32, 64},
{1, -4, -20, 40, 120, -96, -224, 64, 128},
{1, 5, -20, -80, 120, 336, -224, -512, 128, 256},
{0, 5, 30, -80, -280, 336,896, -512, -1152, 256, 512}
MATHEMATICA
Clear[P] P[x, -1] = 0; P[x, 0] = 1; P[x_, n_] := P[x, n] = P[x, n - 1] + ChebyshevT[n, x]; Table[P[x, n], {n, 0, 10}]; a = Table[CoefficientList[P[x, n], x], {n, 0, 10}]; Flatten[a]
CROSSREFS
Cf. A053120.
Sequence in context: A158380 A051734 A157898 * A262138 A308212 A181346
KEYWORD
tabl,sign
AUTHOR
Roger L. Bagula, Apr 27 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 06:16 EDT 2024. Contains 371782 sequences. (Running on oeis4.)