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.

A367393 a(n) = A103136(2*n, n), the central terms of the inverse of the Delannoy triangle.

Original entry on oeis.org

1, -3, 22, -194, 1838, -18082, 182054, -1861890, 19258078, -200898626, 2109785654, -22275498434, 236225927182, -2514344180194, 26845804973638, -287403142763522, 3084015902579646, -33160937871888514, 357206218412519510, -3853959574555396290, 41640758821142160110
Offset: 0

Views

Author

Peter Luschny, Nov 16 2023

Keywords

Comments

A combinatorial interpretation in terms of Schroeder paths is given in A103136.

Crossrefs

Cf. A103136.

Programs

  • SageMath
    # Using function A103136.
    def A367393List(size):
        M = A103136(2*size)
        return [M[2*n][n] for n in range(size)]
    print(A367393List(21))