login
A364228
Triangle read by rows: T(n, k) is the number of n X n Hermitian Toeplitz matrices of rank k using all the integers 1, 2, ..., n and with all off-diagonal elements purely imaginary.
1
1, 0, 2, 0, 1, 5, 0, 0, 0, 24, 0, 0, 0, 0, 120, 0, 0, 0, 0, 1, 719, 0, 0, 0, 0, 0, 0, 5040, 0, 0, 0, 0, 0, 2, 1, 40317, 0, 0, 0, 0, 0, 0, 0, 6, 362874, 0, 0, 0, 0, 0, 0, 1, 0, 1, 3628798
OFFSET
1,3
EXAMPLE
The triangle begins:
1;
0, 2;
0, 1, 5;
0, 0, 0, 24;
0, 0, 0, 0, 120;
0, 0, 0, 0, 1, 719;
0, 0, 0, 0, 0, 0, 5040;
0, 0, 0, 0, 0, 2, 1, 40317;
0, 0, 0, 0, 0, 0, 0, 6, 362874;
0, 0, 0, 0, 0, 0, 1, 0, 1, 3628798;
...
MATHEMATICA
T[n_, k_]:=Count[Flatten[Table[MatrixRank[ToeplitzMatrix[Join[{d}, I Part[Permutations[Drop[Range[n], {d}]], i]]]], {i, (n-1)!}, {d, n}]], k]; Table[T[n, k], {n, 9}, {k, n}]//Flatten
CROSSREFS
Cf. A000142 (row sums), A359614 (minimal determinant), A359615 (maximal determinant), A359616 (minimal permanent), A359617 (maximal permanent), A364229 (right diagonal).
Sequence in context: A378239 A378238 A378240 * A112899 A212808 A337085
KEYWORD
nonn,more,tabl
AUTHOR
Stefano Spezia, Jul 14 2023
STATUS
approved