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.

A361921 The number of unlabeled bounded Eulerian posets with n elements.

Original entry on oeis.org

0, 1, 1, 0, 1, 0, 1, 0, 2, 0, 5, 0, 11
Offset: 0

Views

Author

Martin Rubey, Mar 30 2023

Keywords

Comments

A graded partially ordered set is Eulerian if every nontrivial interval has the same number of elements of even rank as of odd rank. It is bounded if it has a unique maximal and a unique minimal element.

Programs

  • Sage
    sum(1 for P in posets(n-2) if (Q := P.with_bounds()).is_graded() and Q.is_eulerian())