OFFSET
1,5
COMMENTS
a(n) is the number of size-n, rooted, ordered, lone-child-avoiding trees in which the subtrees of each non-leaf vertex, taken left to right, have weakly decreasing sizes, where size is measured by number of vertices.
The analogous trees when size is measured by number of leaves are counted by A196545.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..2948
David Callan, Trees of size up to 7 for A346787
David Callan, A Combinatorial Interpretation for Sequence A345973 in OEIS, arXiv:2108.04969 [math.CO], 2021.
FORMULA
Counting by sizes of subtrees of the root, a(n) is the sum, over all non-singleton partitions i_1,i_2,...,i_k of n-1, of the product a(i_1)a(i_2) ... a(i_k).
G.f. satisfies A(x)=x/((1+x)*Product_{n>=1} (1 - a(n)*x^n)).
EXAMPLE
See Link.
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1)+a(i)*b(n-i, min(n-i, i))))
end:
a:= n-> b(n-1, n-2):
seq(a(n), n=1..40); # Alois P. Heinz, Aug 05 2021
MATHEMATICA
a[1] = 1; a[2] = 0;
a[n_] /; n >= 3 := a[n] = Apply[Plus, Map[Apply[Times, Map[a, #]] &, Rest[IntegerPartitions[n - 1]]]]
Table[a[n], {n, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
David Callan, Aug 03 2021
STATUS
approved