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.

A271077 Number of pseudocomplemented lattices on n nodes.

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 10, 29, 99, 391, 1775, 9214
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_pseudocomplemented():
                    n += 1
        print(n)