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

A370723
Number of symmetric (0,1)-matrices with sum of entries equal to n and no zero rows or columns, with weakly decreasing row sums and column sums.
0
1, 2, 5, 14, 39, 123, 393, 1352, 4782, 17824, 68481, 274166
OFFSET
1,2
EXAMPLE
The a(3) = 5 matrices:
[1 0 0] [1 0 0] [0 1 0] [0 0 1] [1 1]
[0 1 0] [0 0 1] [1 0 0] [0 1 0] [1 0]
[0 0 1] [0 1 0] [0 0 1] [1 0 0]
MATHEMATICA
a[0] = 1;
a[n_] := a[n] = Length[Select[Subsets[Tuples[Range[n], 2], {n}], Module[{matrix, rows, cols}, matrix = ConstantArray[0, {n, n}]; (matrix[[#[[1]], #[[2]]]] = 1) & /@ #; rows = Total[matrix, {2}]; cols = Total[matrix, {1}]; And[Union[First /@ #] == Range[Max @@ First /@ #], Union[Last /@ #] == Range[Max @@ Last /@ #], Sort[Reverse /@ #] == #, OrderedQ[Reverse[rows]], OrderedQ[Reverse[cols]]]] &]];
Table[a[n], {n, 1, 6}] (* Robert P. P. McKone, May 19 2024, from Gus Wiseman in A135588 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Ludovic Schwob, May 18 2024
STATUS
approved