login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A110124
A scaled Legendre triangle.
4
1, 0, 1, -2, 2, 1, 0, 4, 4, 1, 6, 8, 22, 6, 1, 0, 16, 136, 52, 8, 1, -20, 32, 886, 504, 94, 10, 1, 0, 64, 5944, 5136, 1232, 148, 12, 1, 70, 128, 40636, 53856, 16966, 2440, 214, 14, 1, 0, 256, 281488, 575296, 240368, 42256, 4248, 292, 16, 1, -252, 512, 1968934, 6225792, 3468844, 752800, 88566, 6776, 382, 18, 1
OFFSET
0,4
COMMENTS
Row sums are A110125. Diagonal sums are A110126. Columns include A000079, A069835, A084773, and A098269.
FORMULA
Number triangle T(n, k)=2^(n-k)*LegendreP(n-k, k); T(n, k)=sum{j=0..floor((n-k)/2), (-1)^j*C(n-k, j)C(2n-2k-2j, n-k)k^(n-k-2j)}.
EXAMPLE
Rows begin
1;
0,1;
-2,2,1;
0,4,4,1;
6,8,22,6,1;
0,16,136,62,8,1;
-20,32,886,504,94,10,1;
PROG
(PARI) T(n, k)=pollegendre(n-k, k)<<(n-k) \\ Charles R Greathouse IV, Mar 18 2017
CROSSREFS
Sequence in context: A171941 A071464 A071510 * A116389 A216344 A332011
KEYWORD
easy,sign,tabl
AUTHOR
Paul Barry, Jul 13 2005
STATUS
approved