A326967 Number of sets of subsets of {1..n} where every covered vertex is the unique common element of some subset of the edges.
2, 4, 10, 92, 38362, 4020654364, 18438434849260080818, 340282363593610212050791236025945013956, 115792089237316195072053288318104625957065868613454666314675263144628100544274
Offset: 0
Keywords
Examples
The a(0) = 2 through a(2) = 10 sets of subsets: {} {} {} {{}} {{}} {{}} {{1}} {{1}} {{},{1}} {{2}} {{},{1}} {{},{2}} {{1},{2}} {{},{1},{2}} {{1},{2},{1,2}} {{},{1},{2},{1,2}}
Crossrefs
Programs
-
Mathematica
tmQ[eds_]:=Union@@Select[Intersection@@@Rest[Subsets[eds]],Length[#]==1&]==Union@@eds; Table[Length[Select[Subsets[Subsets[Range[n]]],tmQ[#]&]],{n,0,3}]
Comments