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.

A353133 Coefficients of expansion of f(x) = (1+x*m(x))^5*(x^2*(x*m(x))'+1) where m(x) is the generating function for A001006.

Original entry on oeis.org

1, 5, 16, 47, 136, 392, 1130, 3262, 9434, 27337, 79364, 230815, 672380, 1961635, 5730860, 16763685, 49093260, 143924943, 422352816, 1240529133, 3646710456, 10728322770, 31584554610, 93048320820, 274292367650, 809044988695, 2387642856380, 7050001551361, 20826624824612, 61552574382856
Offset: 0

Views

Author

Kassie Archer, Apr 25 2022

Keywords

Comments

2*x^7*f(x) is the generating function for the number of Dyck paths with L(D)=7 where L(D) is the product of binomial coefficients (u_i(D)+d_i(D) choose u_i(D)), where u_i(D) is the number of up-steps between the i-th and (i+1)-st down step and d_i(D) is the number of down-steps between the i-th and (i+1)-st up step.

Crossrefs

Programs

  • PARI
    m(x) = (1-x-sqrt(1-2*x-3*(x^2)))/(2*(x^2));
    my(x='x+O('x^30)); Vec((1+x*m(x))^5*(x^2*(x*m(x))'+1)) \\ Michel Marcus, Apr 25 2022