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.

A364523 G.f. satisfies A(x) = 1 + x*A(x) + x^6*A(x)^6.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 2, 8, 29, 85, 211, 463, 931, 1795, 3550, 7736, 18929, 49505, 130000, 330430, 804271, 1885675, 4327555, 9929515, 23224435, 55907251, 138016906, 345107296, 862546231, 2136402451, 5231163232, 12697101118, 30723857209, 74569942745
Offset: 0

Views

Author

Seiichi Manyama, Jul 27 2023

Keywords

Comments

Number of ordered trees with n edges and having nonleaf nodes of outdegrees 1 or 6. - Emanuele Munarini, Jul 11 2024

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\6, binomial(n, 6*k)*binomial(6*k, k)/(5*k+1));

Formula

a(n) = Sum_{k=0..floor(n/6)} binomial(n,6*k) * binomial(6*k,k) / (5*k+1).