login
Number of rooted trees with total weight n, where the weight of a node at height k is k (with the root considered to be at level 1).
4

%I #22 Sep 12 2024 07:50:05

%S 0,1,0,1,0,1,1,1,1,2,2,3,3,4,5,7,7,11,12,16,19,25,29,38,46,59,72,91,

%T 110,141,171,214,264,331,405,509,623,777,957,1189,1462,1822,2235,2774,

%U 3418,4228,5205,6442,7922,9793,12053,14870,18298,22572,27747,34203

%N Number of rooted trees with total weight n, where the weight of a node at height k is k (with the root considered to be at level 1).

%C Equivalently, number of trees total weight n when the weight of each node is the size of its subtree. To get the equivalence, simply distribute the weights on each node one each to the node and each of its ancestors. - _Franklin T. Adams-Watters_, Oct 03 2009

%H Alois P. Heinz, <a href="/A117357/b117357.txt">Table of n, a(n) for n = 0..1000</a>

%F If a<k>(n) is the equivalent of this sequence with the root node considered to be at level k, then a<k>(n) is the Euler transform of a<k+1>(n) shifted right k places. To compute N terms, take k so that (k+1)*(k+2)/2 > N, approximate a<k>(n) by 1 if n=k, 0 otherwise and apply this rule repeatedly. Formula from _Christian G. Bower_.

%e a(9) = 2; there is one tree with root at height 1 and 4 nodes at height 2 (1+4*2 = 9) and one with root at height 1, 1 node at height 2 and 2 nodes at height 3 (1+2+2*3 = 9).

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

%p binomial(g(i-k, i-k, k+1)+j-1, j)*g(n-i*j, i-1, k), j=0..n/i)))

%p end:

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

%p seq(a(n), n=0..60); # _Alois P. Heinz_, May 16 2013

%t g[n_, i_, k_] := g[n, i, k] = If[n==0, 1, If[i<1, 0, Sum[Binomial[g[i-k, i - k, k+1]+j-1, j]*g[n-i*j, i-1, k], {j, 0, n/i}]]]; a[n_] := g[n-1, n-1, 2]; Table[a[n], {n, 0, 60}] (* _Jean-François Alcover_, Feb 21 2017, after _Alois P. Heinz_ *)

%Y Cf. A117356, A000081.

%K nonn

%O 0,10

%A _Franklin T. Adams-Watters_, Mar 09 2006