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.

A380211 Number of rooted binary normal unlabeled galled trees with n leaves.

Original entry on oeis.org

0, 1, 1, 2, 6, 20, 72, 272, 1064, 4271, 17497, 72843, 307307, 1310792, 5643555, 24493270, 107043258, 470668034, 2080681402, 9242180923, 41229189089, 184634145428, 829732117279, 3740636883361, 16912812764736, 76673344515050, 348449086540653, 1587154540744158
Offset: 0

Views

Author

Noah A Rosenberg, Jan 16 2025

Keywords

Comments

The asymptotic growth of a(n) follows (0.0779...)*(4.8230...^n)*n^(-3/2).

Examples

			For n=3 leaves, there is the unique rooted binary unlabeled tree with 3 leaves and no galls, and there is a rooted binary unlabeled tree with a root gall from which 3 leaves are descended; hence a(3)=2.
		

Crossrefs

Cf. A001190 (rooted binary unlabeled galled trees with n leaves and 0 galls).

Programs

  • Mathematica
    terms = 28; A[] = 0; Do[A[x] = x + (1/2)*(A[x]^2 + A[x^2]) +A[x]((A[x]/(1-A[x]))^2+A[x^2]/(1-A[x^2]))/2+ O[x]^terms // Normal, terms]; CoefficientList[A[x], x] (* Stefano Spezia, Mar 22 2025 *)

Formula

G.f. satisfies A(x) = 1 + x + (1/2)*A(x)^2 + (1/2)*A(x^2) - 1/(1-A(x)) + A(x)/(2*(1-A(x))^2) + A(x)/(2*(1-A(x^2))).