cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A355517 Number of nonisomorphic systems enumerated by A334254; that is, the number of inequivalent closure operators on a set of n elements where all singletons are closed.

Original entry on oeis.org

1, 2, 1, 4, 50, 7443, 95239971
Offset: 0

Views

Author

Dmitry I. Ignatov, Jul 05 2022

Keywords

Comments

The T_1 axiom states that all singleton sets {x} are closed.
For n>1, this property implies strictness (meaning that the empty set is closed).

Examples

			a(0) = 1 counts the empty set, while a(1) = 2 counts {{1}} and {{},{1}}.
For a(2) = 1 the closure system is as follows:  {{1,2},{1},{2},{}}.
The a(3) = 4 inequivalent set-systems of closed sets are:
  {{1,2,3},{1},{2},{3},{}}
  {{1,2,3},{1,2},{1},{2},{3},{}}
  {{1,2,3},{1,2},{1,3},{1},{2},{3},{}}
  {{1,2,3},{1,2},{1,3},{2,3},{1},{2},{3},{}}.
		

Crossrefs

The number of all closure operators is given in A102896, while A193674 contains the number of all nonisomorphic ones.
For T_1 closure operators and their strict counterparts, see A334254 and A334255, respectively; the only difference is a(1).

A334255 Number of strict closure operators on a set of n elements which satisfy the T_1 separation axiom.

Original entry on oeis.org

1, 1, 1, 8, 545, 702525, 66960965307
Offset: 0

Views

Author

Joshua Moerman, Apr 24 2020

Keywords

Comments

The T_1 axiom states that all singleton sets {x} are closed.
A closure operator is strict if the empty set is closed.

Examples

			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},{}}
		

Crossrefs

The number of all strict closure operators is given in A102894.
For all strict T_0 closure operators, see A334253.
For T_1 closure operators, see A334254.

Programs

  • 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 *)

Extensions

a(6) from Dmitry I. Ignatov, Jul 03 2022

A334252 Number of closure operators on a set of n elements which satisfy the T_0 separation axiom.

Original entry on oeis.org

1, 2, 5, 44, 2179, 1362585, 75953166947, 14087646640499308474
Offset: 0

Views

Author

Joshua Moerman, Apr 20 2020

Keywords

Comments

The T_0 axiom states that the closure of {x} and {y} are different for distinct x and y.

Examples

			The a(0) = 1 through a(2) = 5 set-systems of closed sets:
{{}}  {{}}      {{1,2},{1}}
      {{1},{}}  {{1,2},{2}}
                {{1,2},{1},{}}
                {{1,2},{2},{}}
                {{1,2},{1},{2},{}}
		

Crossrefs

The number of all closure operators is given in A102896.
For strict T0 closure operators, see A334253.
For T1 closure operators, see A334254.

Formula

a(n) = Sum_{k=0..n} Stirling1(n,k) * A102896(k). - Andrew Howroyd, Apr 20 2020

Extensions

a(6)-a(7) from Andrew Howroyd, Apr 20 2020

A235604 Number of equivalence classes of lattices of subsets of the power set 2^[n].

Original entry on oeis.org

1, 1, 1, 4, 50, 7443, 95239971
Offset: 0

Views

Author

N. J. A. Sloane, Jan 21 2014

Keywords

Comments

This is also the number of inequivalent atomic lattices on n atoms or inequivalent strict closure systems under T1 separation axiom on n elements. - Dmitry I. Ignatov, Sep 27 2022

Crossrefs

The number of inequivalent closure operators on a set of n elements where all singletons are closed is given in A355517.
The number of all strict closure operators is given in A102894.
For T_1 closure operators, see A334254.

Extensions

a(5) from Andrew Weimholt, Jan 27 2014
a(6) from Dmitry I. Ignatov, Sep 27 2022
Showing 1-4 of 4 results.