login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A368600 Number of ways to choose a set of n nonempty subsets of {1..n} such that it is not possible to choose a different element from each. 16
0, 0, 0, 3, 164, 18625, 5491851 (list; graph; refs; listen; history; text; internal format)
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.
FORMULA
a(n) = A136556(n) - A368601(n).
EXAMPLE
The a(3) = 3 set-systems:
{{1},{2},{1,2}}
{{1},{3},{1,3}}
{{2},{3},{2,3}}
MATHEMATICA
Table[Length[Select[Subsets[Rest[Subsets[Range[n]]], {n}], Length[Select[Tuples[#], UnsameQ@@#&]]==0&]], {n, 0, 3}]
PROG
(Python)
from itertools import combinations, product, chain
from scipy.special import comb
def v(c):
for elements in product(*c):
if len(set(elements)) == len(elements):
return True
return False
def a(n):
if n == 0:
return 1
subsets = list(chain.from_iterable(combinations(range(1, n + 1), r) for r in range(1, n + 1)))
cs = combinations(subsets, n)
c = sum(1 for c in cs if v(c))
return c
[print(int(comb(2**n-1, n) - a(n))) for n in range(7)] # Robert P. P. McKone, Jan 02 2024
CROSSREFS
For a unique choice we have A003024, any length A367904 (ranks A367908).
Sets of n nonempty subsets of {1..n} are counted by A136556.
For any length we have A367903, ranks A367907, no singletons A367769.
The complement is A368601, any length A367902 (see also A367770, A367906).
A000372 counts antichains, covering A006126, nonempty A014466.
A003465 counts covering set-systems, unlabeled A055621.
A058891 counts set-systems, unlabeled A000612.
A059201 counts covering T_0 set-systems.
A323818 counts covering connected set-systems, unlabeled A323819.
Sequence in context: A364302 A212845 A212806 * A030258 A154737 A285488
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jan 01 2024
EXTENSIONS
a(6) from Robert P. P. McKone, Jan 02 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 28 13:13 EDT 2024. Contains 372086 sequences. (Running on oeis4.)