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!)
A318798 Number of rooted trees with n nodes such that no more than four subtrees of the same size extend from the same node. 2

%I #4 Sep 03 2018 21:07:51

%S 0,1,1,2,4,9,19,46,110,273,684,1746,4503,11758,30943,82118,219337,

%T 589477,1592427,4322386,11781435,32235285,88502260,243747792,

%U 673238061,1864400173,5175591107,14399672901,40146278964,112143682477,313822403439,879673332422

%N Number of rooted trees with n nodes such that no more than four subtrees of the same size extend from the same node.

%H Alois P. Heinz, <a href="/A318798/b318798.txt">Table of n, a(n) for n = 0..2143</a>

%p g:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, add(

%p binomial(g((i-1)$2)+j-1, j)*g(n-i*j, i-1), j=0..min(4, n/i))))

%p end:

%p a:= n-> g((n-1)$2):

%p seq(a(n), n=0..40);

%Y Column k=4 of A318753.

%K nonn

%O 0,4

%A _Alois P. Heinz_, Sep 03 2018

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)