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

A326365
Number of intersecting antichains with empty intersection (meaning there is no vertex in common to all the edges) covering n vertices.
5
1, 0, 0, 1, 23, 1834, 1367903, 229745722873, 423295077919493525420
OFFSET
0,5
COMMENTS
Covering means there are no isolated vertices. A set system (set of sets) is an antichain if no part is a subset of any other, and is intersecting if no two parts are disjoint.
EXAMPLE
The a(4) = 23 intersecting antichains with empty intersection:
{{1,2},{1,3},{2,3,4}}
{{1,2},{1,4},{2,3,4}}
{{1,2},{2,3},{1,3,4}}
{{1,2},{2,4},{1,3,4}}
{{1,3},{1,4},{2,3,4}}
{{1,3},{2,3},{1,2,4}}
{{1,3},{3,4},{1,2,4}}
{{1,4},{2,4},{1,2,3}}
{{1,4},{3,4},{1,2,3}}
{{2,3},{2,4},{1,3,4}}
{{2,3},{3,4},{1,2,4}}
{{2,4},{3,4},{1,2,3}}
{{1,2},{1,3,4},{2,3,4}}
{{1,3},{1,2,4},{2,3,4}}
{{1,4},{1,2,3},{2,3,4}}
{{2,3},{1,2,4},{1,3,4}}
{{2,4},{1,2,3},{1,3,4}}
{{3,4},{1,2,3},{1,2,4}}
{{1,2},{1,3},{1,4},{2,3,4}}
{{1,2},{2,3},{2,4},{1,3,4}}
{{1,3},{2,3},{3,4},{1,2,4}}
{{1,4},{2,4},{3,4},{1,2,3}}
{{1,2,3},{1,2,4},{1,3,4},{2,3,4}}
MATHEMATICA
stableSets[u_, Q_]:=If[Length[u]==0, {{}}, With[{w=First[u]}, Join[stableSets[DeleteCases[u, w], Q], Prepend[#, w]&/@stableSets[DeleteCases[u, r_/; r==w||Q[r, w]||Q[w, r]], Q]]]];
Table[Length[Select[stableSets[Subsets[Range[n], {1, n}], Or[Intersection[#1, #2]=={}, SubsetQ[#1, #2]]&], And[Union@@#==Range[n], #=={}||Intersection@@#=={}]&]], {n, 0, 4}]
CROSSREFS
Intersecting antichain covers are A305844.
Intersecting covers with empty intersection are A326364.
Antichain covers with empty intersection are A305001.
The binomial transform is the non-covering case A326366.
Covering, intersecting antichains with empty intersection are A326365.
Sequence in context: A183480 A002439 A229814 * A319508 A331340 A269122
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jul 01 2019
EXTENSIONS
a(7)-a(8) from Andrew Howroyd, Aug 14 2019
STATUS
approved