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!)
A326396 Total number of colors in all series-reduced rooted trees with n leaves where colors span an initial interval of the color palette. 3

%I #18 Dec 22 2020 03:54:25

%S 1,3,26,322,5210,104421,2491498,68907073,2166242180,76266794945,

%T 2972079029674,126987589678185,5902427979920102,296484317531254557,

%U 16003975713659818226,923838934059255332723,56788871072327503930862,3703444074072753204057172

%N Total number of colors in all series-reduced rooted trees with n leaves where colors span an initial interval of the color palette.

%H Alois P. Heinz, <a href="/A326396/b326396.txt">Table of n, a(n) for n = 1..200</a>

%F a(n) = Sum_{k=1..n} k * A319376(n,k).

%F From _Vaclav Kotesovec_, Sep 18 2019: (Start)

%F a(n) ~ c * d^n * n^n, where d = 1.37392076830840090205551979... and c = 0.29889555940946459367729...

%F a(n) ~ n*A316651(n)/(2*log(2)). (End)

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

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

%p end:

%p A:= (n, k)-> `if`(n<2, n*k, b(n, n-1, k)):

%p a:= n-> add(k*add(A(n, k-j)*(-1)^j*binomial(k, j), j=0..k-1), k=1..n):

%p seq(a(n), n=1..20);

%t b[n_, i_, k_] := b[n, i, k] = If[n == 0, 1, If[i < 1, 0,

%t Sum[Binomial[A[i, k] + j - 1, j] b[n - i j, i - 1, k], {j, 0, n/i}]]];

%t A [n_, k_] := If[n < 2, n k, b[n, n - 1, k]];

%t a[n_] := Sum[k Sum[A[n, k-j](-1)^j Binomial[k, j], {j, 0, k-1}], {k, 1, n}];

%t Array[a, 20] (* _Jean-François Alcover_, Dec 22 2020, after _Alois P. Heinz_ *)

%Y Cf. A316651, A319376.

%K nonn

%O 1,2

%A _Alois P. Heinz_, Sep 11 2019

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)