A349226 Triangle read by rows. Row n gives the coefficients of Product_{k=0..n} (x - k^k) expanded in decreasing powers of x, with row 0 = {1}.
1, 1, -1, 1, -2, 1, 1, -6, 9, -4, 1, -33, 171, -247, 108, 1, -289, 8619, -44023, 63340, -27648, 1, -3413, 911744, -26978398, 137635215, -197965148, 86400000, 1, -50070, 160195328, -42565306462, 1258841772303, -6421706556188, 9236348345088, -4031078400000
Offset: 0
Examples
The triangle begins: 1; 1, -1; 1, -2, 1; 1, -6, 9, -4; 1, -33, 171, -247, 108; 1, -289, 8619, -44023, 63340, -27648; 1, -3413, 911744, -26978398, 137635215, -197965148, 86400000; ... Row 4: x^4-33*x^3+171*x^2-247*x+108 = (x-1)*(x-1^1)*(x-2^2)*(x-3^3).
Crossrefs
Programs
-
PARI
T(n, k) = polcoeff(prod(m=0, n-1, (x-m^m)), n-k);
Comments