OFFSET
1,1
COMMENTS
Minimality is relative to the ordering where x < y means the binary indices of x are a subset of those of y (a Boolean algebra).
A binary index of n (row n of A048793) is any position of a 1 in its reversed binary expansion.
The axiom of choice says that, given any set of nonempty sets Y, it is possible to choose a set containing an element from each. The strict version requires this set to have the same cardinality as Y, meaning no element is chosen more than once.
EXAMPLE
The terms the corresponding set-systems begin:
7: {{1},{2},{1,2}}
25: {{1},{3},{1,3}}
30: {{2},{1,2},{3},{1,3}}
42: {{2},{3},{2,3}}
45: {{1},{1,2},{3},{2,3}}
51: {{1},{2},{1,3},{2,3}}
53: {{1},{1,2},{1,3},{2,3}}
54: {{2},{1,2},{1,3},{2,3}}
60: {{1,2},{3},{1,3},{2,3}}
75: {{1},{2},{3},{1,2,3}}
77: {{1},{1,2},{3},{1,2,3}}
78: {{2},{1,2},{3},{1,2,3}}
83: {{1},{2},{1,3},{1,2,3}}
85: {{1},{1,2},{1,3},{1,2,3}}
86: {{2},{1,2},{1,3},{1,2,3}}
90: {{2},{3},{1,3},{1,2,3}}
92: {{1,2},{3},{1,3},{1,2,3}}
99: {{1},{2},{2,3},{1,2,3}}
MATHEMATICA
vmin[y_]:=Select[y, Function[s, Select[DeleteCases[y, s], SubsetQ[bpe[s], bpe[#]]&]=={}]];
Select[Range[100], Select[Tuples[bpe/@bpe[#]] , UnsameQ@@#&]=={}&]//vmin
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 29 2023
STATUS
approved