OFFSET
0,2
COMMENTS
A set-system is a finite set of finite nonempty sets, so no two edges of a set-system that is closed under intersection can be disjoint.
LINKS
M. Habib and L. Nourine, The number of Moore families on n = 6, Discrete Math., 294 (2005), 291-296.
FORMULA
a(n) = 1 + Sum_{k=0, n-1} binomial(n,k)*A102895(k). - Andrew Howroyd, Aug 10 2019
EXAMPLE
The a(3) = 32 set-systems:
{} {{1}} {{1}{12}} {{1}{12}{13}} {{1}{12}{13}{123}}
{{2}} {{1}{13}} {{2}{12}{23}} {{2}{12}{23}{123}}
{{3}} {{2}{12}} {{3}{13}{23}} {{3}{13}{23}{123}}
{{12}} {{2}{23}} {{1}{12}{123}}
{{13}} {{3}{13}} {{1}{13}{123}}
{{23}} {{3}{23}} {{2}{12}{123}}
{{123}} {{1}{123}} {{2}{23}{123}}
{{2}{123}} {{3}{13}{123}}
{{3}{123}} {{3}{23}{123}}
{{12}{123}}
{{13}{123}}
{{23}{123}}
MATHEMATICA
Table[Length[Select[Subsets[Subsets[Range[n], {1, n}]], SubsetQ[#, Intersection@@@Tuples[#, 2]]&]], {n, 0, 3}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Aug 04 2019
EXTENSIONS
a(5)-a(8) from Andrew Howroyd, Aug 10 2019
STATUS
approved