A326939 Number of T_0 sets of subsets of {1..n} that cover all n vertices.
2, 2, 8, 192, 63384, 4294003272, 18446743983526539408, 340282366920938462946865774750753349904, 115792089237316195423570985008687907841019819456486779364848020385134373080448
Offset: 0
Keywords
Examples
The a(0) = 2 through a(2) = 8 sets of subsets: {} {{1}} {{1},{2}} {{}} {{},{1}} {{1},{1,2}} {{2},{1,2}} {{},{1},{2}} {{},{1},{1,2}} {{},{2},{1,2}} {{1},{2},{1,2}} {{},{1},{2},{1,2}}
Crossrefs
Programs
-
Mathematica
dual[eds_]:=Table[First/@Position[eds,x],{x,Union@@eds}]; Table[Length[Select[Subsets[Subsets[Range[n]]],Union@@#==Range[n]&&UnsameQ@@dual[#]&]],{n,0,3}]
Comments