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.

Previous Showing 21-22 of 22 results.

A271078 Number of non-isomorphic atomic lattices on n nodes.

Original entry on oeis.org

0, 1, 1, 0, 1, 1, 2, 4, 9, 22, 59, 181
Offset: 0

Views

Author

Jori Mäntysalo, Mar 30 2016

Keywords

Crossrefs

Cf. A006966.

Programs

  • SageMath
    for i in range(0, 12):
        n = 0
        for P in Posets(i):
            if P.is_lattice():
                L = LatticePoset(P)
                if L.is_atomic():
                    n += 1
        print(n)

A373922 Number of lattices on n unlabeled nodes, up to duality.

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 11, 33, 129, 577, 3113, 19092, 132318, 1011665
Offset: 0

Views

Author

Jukka Kohonen, Jun 30 2024

Keywords

Comments

Number of nonisomorphic lattices on n nodes, when from each pair of dual lattices only one is counted.

Examples

			a(5)=4: These are the four lattices. The dual of the last one is not counted.
  o      o        o       o
  |     / \      /|\      |
  o    o   |    o o o     o
  |    |   o     \|/     / \
  o    o   |      o     o   o
  |     \ /              \ /
  o      o                o
  |
  o
		

Formula

a(n) = (A006966(n) + A373894(n)) / 2.
Previous Showing 21-22 of 22 results.