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-1 of 1 results.

A302250 The number of antichains in the lattice of set partitions of an n-element set.

Original entry on oeis.org

2, 3, 10, 347, 79814832
Offset: 1

Views

Author

John Machacek, Apr 04 2018

Keywords

Comments

Computing terms in this sequence is analogous to Dedekind's problem which asks for the number of antichains in the Boolean algebra.
This count includes the empty antichain consisting of no set partitions.

Examples

			For n = 3 the a(3) = 10 antichains are:
  {}
  {1/2/3}
  {1/23}
  {12/3}
  {13/2}
  {1/23, 12/3}
  {1/23, 13/2}
  {12/3, 13/2}
  {1/23, 12/3, 13/2}
  {123}.
Here we have used the usual shorthand notation for set partitions where 1/23 denotes {{1}, {2,3}}.
		

Crossrefs

Equals A302251 + 1, Cf. A000372, A007153, A003182, A014466.

Programs

  • Sage
    [Posets.SetPartitions(n).antichains().cardinality() for n in range(4)]
Showing 1-1 of 1 results.