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.

A373894 Number of self-dual lattices on n unlabeled nodes.

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 7, 13, 36, 76, 232, 562, 1860, 5025
Offset: 0

Views

Author

Jukka Kohonen, Jun 21 2024

Keywords

Comments

Lattices whose Hasse diagram looks the same if it is turned upside down.

Examples

			a(5)=3: These are the three lattices.
  o      o        o
  |     / \      /|\
  o    o   |    o o o
  |    |   o     \|/
  o    o   |      o
  |     \ /
  o      o
  |
  o
		

Crossrefs

Cf. A006966 (lattices), A133983 (self-dual posets).

Programs

  • Sage
    sum(L.is_lattice() and L.is_self_dual() for L in Posets(n))