OFFSET
0,4
COMMENTS
The T_1 axiom states that all singleton sets {x} are closed.
A closure operator is strict if the empty set is closed.
LINKS
Dmitry I. Ignatov, Supporting iPython code for counting closure systems w.r.t. the T_1 separation axiom, Github repository
Dmitry I. Ignatov, Supporting iPython notebook
Eric Weisstein's World of Mathematics, Separation Axioms
Wikipedia, Separation Axiom
EXAMPLE
The a(3) = 8 set-systems of closed sets:
{{1,2,3},{1},{2},{3},{}}
{{1,2,3},{1,2},{1},{2},{3},{}}
{{1,2,3},{1,3},{1},{2},{3},{}}
{{1,2,3},{2,3},{1},{2},{3},{}}
{{1,2,3},{1,2},{1,3},{1},{2},{3},{}}
{{1,2,3},{1,2},{2,3},{1},{2},{3},{}}
{{1,2,3},{1,3},{2,3},{1},{2},{3},{}}
{{1,2,3},{1,2},{1,3},{2,3},{1},{2},{3},{}}
MATHEMATICA
Table[Length[
Select[Subsets[Subsets[Range[n]]],
And[MemberQ[#, {}], MemberQ[#, Range[n]],
SubsetQ[#, Intersection @@@ Tuples[#, 2]],
SubsetQ[#, Map[{#} &, Range[n]]]] &]], {n, 0, 4}] (* Tian Vlasic, Jul 29 2022 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Joshua Moerman, Apr 24 2020
EXTENSIONS
a(6) from Dmitry I. Ignatov, Jul 03 2022
STATUS
approved