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.

User: Dang-Son Nguyen

Dang-Son Nguyen's wiki page.

Dang-Son Nguyen has authored 1 sequences.

A365643 Number of permutations whose reverse-complement shares the same recording tableau in the Robinson-Schensted correspondence.

Original entry on oeis.org

1, 1, 2, 2, 12, 24, 136, 344, 2872, 7108, 80672, 211056, 3032376
Offset: 0

Author

Dang-Son Nguyen, Sep 14 2023

Keywords

Comments

This is an open problem from Martin's "Algebraic Combinatorics" lecture.

Crossrefs

Cf. A059304.

Programs

  • SageMath
    def a(n): return sum(StandardTableaux(T.shape()).cardinality()
                   for T in StandardTableaux(n) if T == T.evacuation())
    print([a(n) for n in range(13)])