A174552 Triangular array T(n,k): The differences in the columns of A174551.
1, 0, 1, 1, 1, 2, 8, 7, 6, 6, 81, 65, 50, 36, 24, 1024, 781, 570, 390, 240, 120, 15625, 11529, 8162, 5460, 3360, 1800, 720, 279936, 201811, 140070, 92526, 57120, 31920, 15120, 5040
Offset: 0
Examples
Triangle begins: 1; 0, 1; 1, 1, 2; 8, 7, 6, 6; 81,65,50,36,24; 1024,781,570,390,240,120; 15625, 11529, 8162, 5460, 3360, 1800, 720...
Programs
-
Mathematica
Table[Append[(-1) Differences[ Table[Sum[(-1)^i Binomial[k, i] (n - i)^n, {i, 0, k}], {k, 0, n}]], n! ], {n, 0, 7}] // Grid
Comments