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”).

A318820
Number of rooted trees with n nodes such that five equals the maximal number of subtrees of the same size extending from the same node.
2
0, 1, 1, 3, 8, 22, 61, 168, 465, 1302, 3659, 10333, 29255, 83096, 236609, 675311, 1931235, 5532421, 15873557, 45608348, 131208906, 377906025, 1089573851, 3144456980, 9082730826, 26256633715, 75960348880, 219905556560, 637038643771, 1846531053341, 5355395451034
OFFSET
5,4
LINKS
MAPLE
g:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0, add(
binomial(g(i-1$2, k)+j-1, j)*g(n-i*j, i-1, k), j=0..min(k, n/i))))
end:
a:= n-> (k-> g(n-1$2, k) -g(n-1$2, k-1))(5):
seq(a(n), n=5..35);
CROSSREFS
Column k=5 of A318754.
Sequence in context: A014397 A048503 A318862 * A200752 A279378 A048579
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 04 2018
STATUS
approved