OFFSET
0,4
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..2545
David Serena and William J. Buchanan, Equivalence Classes Induced by Binary Tree Isomorphism -- Generating Functions, arXiv:2503.02663 [math.CO], 2025. See p. 5.
MAPLE
b:= proc(n) option remember; `if`(n<2, n, `if`(n::odd, 0,
(t-> t*(1-t)/2)(b(n/2)))+add(b(i)*b(n-i), i=1..n/2))
end:
a:= n-> add(b(j)*b(n-j), j=0..n):
seq(a(n), n=0..36); # Alois P. Heinz, Feb 10 2026
MATHEMATICA
terms = 40; A[_] = 0; Do[A[x_] = x + (1/2)*(A[x]^2 + A[x^2]) + O[x]^terms // Normal, terms]; CoefficientList[A[x]^2, x] (* after Jean-François Alcover, Jan 10 2018 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Stefano Spezia, Mar 07 2025
EXTENSIONS
a(21) and following terms corrected by Georg Fischer, Feb 10 2026
STATUS
approved
