login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A318799
Number of rooted trees with n nodes such that no more than five subtrees of the same size extend from the same node.
2
0, 1, 1, 2, 4, 9, 20, 47, 113, 281, 706, 1807, 4671, 12223, 32245, 85777, 229670, 618732, 1675523, 4558995, 12456746, 34166520, 94034681, 259621349, 718846409, 1995609079, 5553497132, 15489246752, 43290735944, 121226413303, 340079037154, 955633681302
OFFSET
0,4
LINKS
MAPLE
g:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, add(
binomial(g((i-1)$2)+j-1, j)*g(n-i*j, i-1), j=0..min(5, n/i))))
end:
a:= n-> g((n-1)$2):
seq(a(n), n=0..40);
CROSSREFS
Column k=5 of A318753.
Sequence in context: A089405 A091500 A370718 * A318852 A052329 A199883
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 03 2018
STATUS
approved