login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A359616
a(n) is the minimal permanent of an n X n Hermitian Toeplitz matrix using all the integers 1, 2, ..., n and with all off-diagonal elements purely imaginary.
9
1, 1, 5, 18, 245, 2249, 57213, 947177, 50431724, 1282453618
OFFSET
0,3
EXAMPLE
a(4) = 245:
[ 1, 3*i, 2*i, 4*i;
-3*i, 1, 3*i, 2*i;
-2*i, -3*i, 1, 3*i;
-4*i, -2*i, -3*i, 1 ]
MATHEMATICA
a={1}; For[n=1, n<=7, n++, mn=Infinity; For[d=1, d<=n, d++, For[i=1, i<=(n-1)!, i++, If[(t=Permanent[ToeplitzMatrix[Join[{d}, I Part[Permutations[Drop[Range[n], {d}]], i]]]])<mn, mn=t]]]; AppendTo[a, mn]]; a
PROG
(Python)
from itertools import permutations
from sympy import Matrix, I
def A359616(n): return min(Matrix(n, n, [(d[i-j] if i>j else -d[j-i]) if i!=j else d[0]*I for i in range(n) for j in range(n)]).per()*(1, -I, -1, I)[n&3] for d in permutations(range(1, n+1))) if n else 1 # Chai Wah Wu, Jan 25 2023
CROSSREFS
Cf. A359614 (minimal determinant), A359615 (maximal determinant), A359617 (maximal).
Sequence in context: A091059 A352663 A203180 * A359560 A139243 A347670
KEYWORD
nonn,hard,more
AUTHOR
Stefano Spezia, Jan 07 2023
STATUS
approved