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!)
A143576 A triangle of coefficients formed by adding Chebyshev T(x,n) to x*U(x,n): p(x,n)=ChebyshevT[n, x] + x*ChebyshevU[n, x]. 0
1, 1, 1, 0, 1, 2, -1, -1, 2, 4, 0, -3, -4, 4, 8, 1, 1, -8, -12, 8, 16, 0, 5, 6, -20, -32, 16, 32, -1, -1, 18, 24, -48, -80, 32, 64, 0, -7, -8, 56, 80, -112, -192, 64, 128, 1, 1, -32, -40, 160, 240, -256, -448, 128, 256, 0, 9, 10, -120, -160, 432, 672, -576, -1024, 256, 512, -1, -1, 50, 60, -400, -560, 1120, 1792, -1280, -2304, 512, 1024 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Row sums are: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}.
The idea of joining the cosine like Chebyshev to the sine like in this manner is to get rid of the most of the zeros.
A {1} was added to the top of the triangle to make it complete with row sums starting at 1.
LINKS
FORMULA
p(x,n)=ChebyshevT[n, x] + x*ChebyshevU[n, x]; t(n,m)=Coefficients(p(x,n)).
EXAMPLE
{1},
{1, 1},
{0, 1, 2},
{-1, -1, 2, 4},
{0, -3, -4, 4, 8},
{1, 1, -8, -12, 8, 16},
{0, 5, 6, -20, -32, 16, 32},
{-1, -1, 18, 24, -48, -80,32, 64},
{0, -7, -8, 56, 80, -112, -192, 64, 128},
{1, 1, -32, -40, 160, 240, -256, -448, 128, 256},
{0, 9, 10, -120, -160, 432, 672, -576, -1024, 256, 512},
{-1, -1, 50, 60, -400, -560, 1120, 1792, -1280, -2304, 512, 1024}
MATHEMATICA
Clear[p, x, n, a]; p[x_, n_] = ChebyshevT[n, x] + x*ChebyshevU[n, x]; Table[FullSimplify[Expand[p[x, n]]], {n, 0, 10}]; Join[{{1}}, Table[CoefficientList[FullSimplify[Expand[p[x, n]]], x], {n, 0, 10}]]; Flatten[%]
CROSSREFS
Cf. A053120.
Sequence in context: A030018 A010739 A166918 * A297159 A293438 A318622
KEYWORD
uned,sign,tabl,less
AUTHOR
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 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)