A111606 Determinant of the upper left n X n elements excluding its first row and column of the Array T(n,m) in A109626.
2, 3, 0, 10, -48, 168, 3456, -29376, -178560, 0, 2995200, 0, -45158400, 1045094400, -14636482560, -122918584320, -370845941760, 12983695441920, -1545691830681600, -62521904633610240, 785989658251100160, -2445553599452282880
Offset: 1
Keywords
Programs
-
Mathematica
f[n_] := f[n] = Block[{a}, a[0] = 1; a[l_] := a[l] = Block[{k = 1, s = Sum[ a[i]*x^i, {i, 0, l - 1}]}, While[ IntegerQ[ Last[ CoefficientList[ Series[(s + k*x^l)^(1/n), {x, 0, l}], x]]] != True, k++ ]; k]; Table[a[j], {j, 0, 32}]]; g[n_, m_] := f[n][[m]]; Table[ Det[ Table[ g[i, j], {i, 2, n}, {j, 2, n}]]{n, 23}]
Comments