OFFSET
0,2
COMMENTS
The dual of a multiset partition has, for each vertex, one block consisting of the indices (or positions) of the blocks containing that vertex, counted with multiplicity. For example, the dual of {{1,2},{2,3}} is {{1},{1,2},{2}}. The T_0 condition means that the dual is strict (no repeated edges).
FORMULA
Binomial transform of A059201.
EXAMPLE
The a(0) = 1 through a(2) = 7 set-systems:
{} {} {}
{{1}} {{1}}
{{2}}
{{1},{2}}
{{1},{1,2}}
{{2},{1,2}}
{{1},{2},{1,2}}
MATHEMATICA
dual[eds_]:=Table[First/@Position[eds, x], {x, Union@@eds}];
Table[Length[Select[Subsets[Subsets[Range[n], {1, n}]], UnsameQ@@dual[#]&]], {n, 0, 3}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 07 2019
STATUS
approved