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!)
A298537 Number of unlabeled rooted trees with n nodes such that every branch of the root has the same number of nodes. 3
1, 1, 2, 3, 6, 10, 25, 49, 127, 291, 766, 1843, 5003, 12487, 34151, 87983, 242088, 634848, 1763749, 4688677, 13085621, 35241441, 98752586, 268282856, 755353825, 2067175933, 5837592853, 16087674276, 45550942142, 126186554309, 358344530763, 997171512999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n + 1) = Sum_{d|n} binomial(A000081(n/d) + d - 1, d).
EXAMPLE
The a(5) = 6 trees: ((((o)))), (((oo))), ((o(o))), ((ooo)), ((o)(o)), (oooo).
MATHEMATICA
r[n_]:=r[n]=If[n===1, 1, Sum[Product[Binomial[r[x]+Count[ptn, x]-1, Count[ptn, x]], {x, Union[ptn]}], {ptn, IntegerPartitions[n-1]}]];
Table[If[n===1, 1, Sum[Binomial[r[(n-1)/d]+d-1, d], {d, Divisors[n-1]}]], {n, 40}]
CROSSREFS
Sequence in context: A124345 A123256 A111275 * A272079 A212606 A192440
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 20 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 April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)