OFFSET
0,4
COMMENTS
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.
LINKS
Wikipedia, Axiom of choice.
EXAMPLE
Non-isomorphic representatives of the a(3) = 23 set-systems:
{{1,2}}
{{1,2,3}}
{{1},{2,3}}
{{1},{1,2,3}}
{{1,2},{1,3}}
{{1,2},{1,2,3}}
{{1},{2,3},{1,2,3}}
{{1,2},{1,3},{2,3}}
{{1,2},{1,3},{1,2,3}}
MATHEMATICA
Table[Length[Select[Subsets[Subsets[Range[n]]], Length[Select[Tuples[#], UnsameQ@@#&]]>1&]], {n, 0, 3}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Dec 12 2023
EXTENSIONS
a(5)-a(8) from Christian Sievers, Jul 26 2024
STATUS
approved