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”).

A373723
Number of strictly totally positive 3 X 3 matrices having all terms in {1,...,n}.
1
0, 0, 22, 597, 7178, 43090, 207494
OFFSET
1,3
COMMENTS
A matrix is strictly totally positive if all its minors are greater than zero.
MATHEMATICA
ispositive1[M_]:=ispositive1[M]=Union@Table[Select[Union@Flatten@Minors[M, r], (#<= 0)&]=={}, {r, 1, Length[M]}]=={True}; W[n_]:=W[n]=Flatten[Table[{{a11, a12, a13}, {a21, a22, a23}, {a31, a32, a33}}, {a11, 1, n}, {a12, 1, n}, {a13, 1, n}, {a21, 1, n}, {a22, 1, n}, {a23, 1, n}, {a31, 1, n}, {a32, 1, n}, {a33, 1, n}], 8]; Table[Length@Select[W[n], ispositive1[#]&], {n, 1, 7}]
CROSSREFS
Sequence in context: A240337 A084271 A092086 * A369142 A218478 A223624
KEYWORD
nonn,more
AUTHOR
STATUS
approved