A326375 Number of intersecting antichains of subsets of {1..n} with empty intersection (meaning there is no vertex in common to all the edges).
2, 2, 2, 3, 29, 1961, 1379274, 229755337550, 423295079757497714060
Offset: 0
Examples
The a(4) = 29 antichains: {} {{}} {{1,2},{1,3},{2,3}} {{1,2},{1,4},{2,4}} {{1,3},{1,4},{3,4}} {{2,3},{2,4},{3,4}} {{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}}
Crossrefs
Programs
-
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]],Or[Intersection[#1,#2]=={},SubsetQ[#1,#2]]&],#=={}||Intersection@@#=={}&]],{n,0,4}]
Formula
a(n) = A326366(n) + 1.
Extensions
a(7)-a(8) from Andrew Howroyd, Aug 14 2019
Comments