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!)
A245747 Number of identity trees with n nodes where the maximal outdegree (branching factor) equals 2. 2

%I #11 Aug 28 2021 06:43:42

%S 1,2,5,10,21,42,87,178,371,773,1630,3447,7346,15712,33790,72922,

%T 158020,343494,749101,1638102,3591723,7893801,17387930,38379199,

%U 84875595,188036829,417284180,927469844,2064465340,4601670624,10270463564,22950838754,51346678940

%N Number of identity trees with n nodes where the maximal outdegree (branching factor) equals 2.

%H Alois P. Heinz, <a href="/A245747/b245747.txt">Table of n, a(n) for n = 4..1000</a>

%F a(n) = A063895(n+1)-1.

%p b:= proc(n, i, t, k) option remember; `if`(n=0, 1,

%p `if`(i<1, 0, add(binomial(b(i-1$2, k$2), j)*

%p b(n-i*j, i-1, t-j, k), j=0..min(t, n/i))))

%p end:

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

%p seq(a(n), n=4..60);

%t b[n_, i_, t_, k_] := b[n, i, t, k] = If[n == 0, 1, If[i<1, 0, Sum[Binomial[ b[i-1, i-1, k, k], j]*b[n-i*j, i-1, t - j, k], {j, 0, Min[t, n/i]}]]];

%t a[n_] := b[n-1, n-1, 2, 2] - b[n-1, n-1, 1, 1];

%t Table[a[n], {n, 4, 60}] (* _Jean-François Alcover_, Aug 28 2021, after Maple code *)

%Y Column k=2 of A244523.

%K nonn

%O 4,2

%A _Joerg Arndt_ and _Alois P. Heinz_, Jul 31 2014

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 02:50 EDT 2024. Contains 371906 sequences. (Running on oeis4.)