OFFSET
0,4
COMMENTS
An intersecting antichain S is a finite set of finite nonempty sets (edges), any two of which have a nonempty intersection, and none of which is a subset of any other. S is spanning if every vertex is contained in some edge.
LINKS
FORMULA
Inverse binomial transform of A001206(n + 1).
EXAMPLE
The a(3) = 5 spanning intersecting antichains:
{{1,2,3}}
{{1,2},{1,3}}
{{1,2},{2,3}}
{{1,3},{2,3}}
{{1,2},{1,3},{2,3}}
MATHEMATICA
Length/@Table[Select[Subsets[Rest[Subsets[Range[n]]]], And[Union@@#==Range[n], FreeQ[Intersection@@@Tuples[#, 2], {}, {1}], Select[Tuples[#, 2], UnsameQ@@#&&Complement@@#=={}&]=={}]&], {n, 1, 4}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 11 2018
STATUS
approved