OFFSET
0,4
COMMENTS
Covering means there are no isolated vertices. A set system (set of sets) is intersecting if no two edges are disjoint.
FORMULA
Inverse binomial transform of A326373. - Andrew Howroyd, Aug 12 2019
EXAMPLE
The a(3) = 2 intersecting set systems with empty intersection:
{{1,2},{1,3},{2,3}}
{{1,2},{1,3},{2,3},{1,2,3}}
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}], Intersection[#1, #2]=={}&], And[Union@@#==Range[n], #=={}||Intersection@@#=={}]&]], {n, 0, 4}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 01 2019
EXTENSIONS
a(6)-a(9) from Andrew Howroyd, Aug 12 2019
STATUS
approved