A326906 Number of sets of subsets of {1..n} that are closed under union and cover all n vertices.
2, 2, 8, 90, 4542, 2747402, 151930948472, 28175295407840207894
Offset: 0
Examples
The a(0) = 2 through a(2) = 8 sets of subsets: {} {{1}} {{1,2}} {{}} {{},{1}} {{},{1,2}} {{1},{1,2}} {{2},{1,2}} {{},{1},{1,2}} {{},{2},{1,2}} {{1},{2},{1,2}} {{},{1},{2},{1,2}}
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Subsets[Range[n]]],Union@@#==Range[n]&&SubsetQ[#,Union@@@Tuples[#,2]]&]],{n,0,3}]
Formula
a(n) = 2 * A102894(n).
Comments