A381724 a(n) = pos(M(n)), where M(n) is the n X n matrix with every term = 4, and pos(M(n)) is the positive part of the determinant of M(n); see A380661.
4, 16, 192, 3072, 61440, 1474560, 41287680, 1321205760, 47563407360, 1902536294400, 83711596953600, 4018156653772800, 208944145996185600, 11700872175786393600, 702052330547183616000, 44931349155019751424000, 3055331742541343096832000
Offset: 1
Keywords
Programs
-
Mathematica
c = 4; d = Table[Det[ConstantArray[c, {n, n}]], {n, 1, 18}] p = Table[Permanent[ConstantArray[c, {n, n}]], {n, 1, 18}] neg = (d - p)/2 pos = (d + p)/2
Formula
s(1) = 4, s(2) = 16, and s(n) = 4*n*s(n-1) for n >= 3.
Comments