OFFSET
0,4
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 798.
P. J. Davis, Interpolation and Approximation, Dover Publications, 1975, p. 372.
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].
Eric Weisstein's World of Mathematics, Legendre Polynomial
EXAMPLE
{1}, {1}, {1,2}, {3,2}, {7,20,8}, {27,28,8}, {33,110,72,16}, ...
x^5 = (27*P_1 +28*P_3 + 8*P_5) / 63, so T(5,2) = 8. - Michael Somos, Feb 04 2004
PROG
(PARI) {T(n, m) = my(Q); if( n<0, 0, m = n%2 + m*2; Q = intformal( ^n * pollegendre(m)); (subst(Q, x, 1) - subst(Q, x, -1)) * (2*m+1) / 2 * polcoeff( pollegendre(n), n) * 2^valuation((n\2*2)!, 2))}; /*Michael Somos, Feb 04 2004 */
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved