A182928 Triangular array read by rows: [T(n,k),k=1..tau(n)] = [-n!/(d*(-(n/d)!)^d), d|n].
1, 1, -1, 1, 2, 1, -3, -6, 1, 24, 1, -10, 30, -120, 1, 720, 1, -35, -630, -5040, 1, 560, 40320, 1, -126, 22680, -362880, 1, 3628800, 1, -462, 11550, -92400, -1247400, -39916800, 1, 479001600, 1, -1716, 97297200, -6227020800
Offset: 1
Examples
The array starts with [1] 1, [2] 1, -1, [3] 1, 2, [4] 1, -3, -6, [5] 1, 24, [6] 1, -10, 30, -120, [7] 1, 720, [8] 1, -35, -630, -5040, [9] 1, 560, 40320,
Programs
-
Maple
A182928_row := proc(n) local d; seq(-n!/(d*(-(n/d)!)^d), d = numtheory[divisors](n)) end:
-
Mathematica
row[n_] := Table[ -n!/(d*(-(n/d)!)^d), {d, Divisors[n]}]; Table[row[n], {n, 1, 14}] // Flatten (* Jean-François Alcover, Jul 29 2013 *)
Comments