OFFSET
0,2
COMMENTS
REFERENCES
C. Lanczos, Applied Analysis. Prentice-Hall, Englewood Cliffs, NJ, 1956, p. 518.
Theodore J. Rivlin, Chebyshev polynomials: from approximation theory to algebra and number theory, 2. ed., Wiley, New York, 1990.
LINKS
T. D. Noe, Rows n=0..50 of triangle, flattened
W. Lang, First rows and related triangles .
Eric Weisstein's World of Mathematics, Chebyshev Polynomial of the Second Kind
FORMULA
a(n, m) = A053124(n, n-m)= (4^(n-m))*A053123(n, m)= (4^(n-m))*((-1)^m)*binomial(2*n+1-m, m) if n >= m, else 0.
a(n, m) := -2*a(n-1, m-1)+4*a(n-1, m)-a(n-2, m-2), a(-2, m) := 0=: a(n, -2), a(-1, m) := 0=: a(n, -1), a(0, 0)=1, a(n, m)=0 if n<m;
G.f. for m-th column (signed triangle): ((-x)^m)*Po(m+1, 4*x)/(1-4*x)^(m+1), with Po(k, x) := sum('binomial(k, 2*j+1)*x^j', 'j'=0..floor(k/2)).
EXAMPLE
{1}; {4,-2}; {16,-16,3}; {64,-96,40,-4}; {256,-512,336,-80,5};... E.g. fourth row (n=3) corresponds to polynomial U^{*}(3,m)=U(3,2*x-1)= 64*x^3-96*x^2+40*x-4.
MATHEMATICA
Reverse /@ CoefficientList[Table[ChebyshevU[n, 2 x - 1], {n, 0, 10}], x] // Flatten (* Eric W. Weisstein, Apr 04 2018 *)
Reverse /@ CoefficientList[ChebyshevU[Range[0, 10], 2 x - 1], x] // Flatten (* Eric W. Weisstein, Apr 04 2018 *)
CROSSREFS
KEYWORD
AUTHOR
STATUS
approved