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.
LINKS
T. D. Noe, Rows n=0..100 of triangle, flattened
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].
T. Copeland, The Elliptic Lie Triad: Riccati and KdV Equations, Infinigens, and Elliptic Genera, see the Additional Notes section, 2015.
H. N. Laden, An historical, and critical development of the theory of Legendre polynomials before 1900, Master of Arts Thesis, University of Maryland 1938.
Eric Weisstein's World of Mathematics, Legendre Polynomial
EXAMPLE
Triangle starts:
1;
1;
-1, 3;
-3, 5;
3, -30, 35;
15, -70, 63;
...
P_5(x) = (15*x - 70*x^3 + 63*x^5)/8 so T(5, ) = (15, -70, 63). P_6(x) = (-5 + 105*x^2 - 315*x^4 + 231*x^6)/16 so T(6, ) = (-5, 105, -315, 231). - Michael Somos, Oct 24 2002
MATHEMATICA
Flatten[Table[(LegendreP[i, x]/.{Plus->List, x->1})Max[ Denominator[LegendreP[i, x]/.{Plus->List, x->1}]], {i, 0, 12}]]
PROG
(PARI) {T(n, k) = if( n<0, 0, polcoeff( pollegendre(n) * 2^valuation( (n\2*2)!, 2), n%2 + 2*k))}; /* Michael Somos, Oct 24 2002 */
CROSSREFS
KEYWORD
sign,tabf,easy,nice
AUTHOR
EXTENSIONS
More terms from Vit Planocka (planocka(AT)mistral.cz), Sep 28 2002
STATUS
approved