login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A318851 Number of rooted trees with n nodes such that no more than four isomorphic subtrees extend from the same node. 2
0, 1, 1, 2, 4, 9, 19, 46, 110, 273, 684, 1746, 4503, 11758, 30943, 82118, 219341, 589485, 1592447, 4322433, 11781565, 32235688, 88503331, 243750729, 673246211, 1864422803, 5175655984, 14399854855, 40146793094, 112145140408, 313826549732, 879685174894 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
h:= proc(n, m, t) option remember; `if`(m=0, binomial(n+t, t),
`if`(n=0, 0, add(h(n-1, m-j, t+1), j=1..min(4, m))))
end:
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(b(n-i*j, i-1)*h(a(i), j, 0), j=0..n/i)))
end:
a:= n-> `if`(n<2, n, b(n-1$2)):
seq(a(n), n=0..35);
CROSSREFS
Column k=4 of A318757.
Sequence in context: A372102 A134964 A318798 * A052328 A133228 A036717
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 04 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 14 15:32 EDT 2024. Contains 375165 sequences. (Running on oeis4.)