A127673 One half of even powers of 2*x in terms of Chebyshev's T-polynomials.
1, 1, 1, 1, 4, 3, 1, 6, 15, 10, 1, 8, 28, 56, 35, 1, 10, 45, 120, 210, 126, 1, 12, 66, 220, 495, 792, 462, 1, 14, 91, 364, 1001, 2002, 3003, 1716, 1, 16, 120, 560, 1820, 4368, 8008, 11440, 6435, 1, 18, 153, 816, 3060, 8568, 18564, 31824, 43758, 24310, 1, 20, 190
Offset: 0
Examples
[1/2]; [ 1, 1]; [ 1, 4, 3]; [ 1, 6, 15, 10]; [ 1, 8, 28, 56, 35]; ... Row n=3: [1, 6, 15, 20/2 = 10] appears in ((2*x)^6)/2 = 1*T(6,x) + 6*T(4,x) + 15*T(2,x) + 10. Row n=3: [1, 6, 15, 20/2 = 10] appears in ((2*cos(phi))^6)/2 = 1*cos(6*phi) + 6*cos(4*phi) + 15*cos(2*phi) + 10. The signed row n=3, [-1, 6, -15, +20/2 = 10], appears in ((4*(1-x^2))^3)/2 = -1*T(6,x) + 6*T(4,x) - 15*T(2,x) + 10). The signed row n=3, [-1, 6, -15, +20/2 = 10], appears in ((2*sin(phi))^6)/2 = -1*cos(6*phi) + 6*cos(4*phi) - 15*cos(2*phi) + 10.
References
- Theodore J. Rivlin, Chebyshev polynomials: from approximation theory to algebra and number theory, 2. ed., Wiley, New York, 1990. pp. 54-55, Ex. 1.5.31.
Links
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 795.
- Index entries for sequences related to Chebyshev polynomials.
- Index entries for triangles and arrays related to Pascal's triangle
Formula
a(n,k) = binomial(2*n,k), k=0..n-1 and a(n,n) = binomial(2*n,n)/2, n >= 1. Instead of a(0,0)=1 one should take 1/2.
Comments