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!)
A327588 Total number of colors in all colored compositions of n using all colors of an initial interval of the color palette such that all parts have different color patterns and the patterns for parts i have i colors in (weakly) increasing order. 2

%I #11 Apr 11 2022 08:14:29

%S 0,1,7,62,642,7784,108824,1725072,30605384,601213744,12958778704,

%T 304145108160,7722286425312,210920029636224,6166996162239840,

%U 192199468584942816,6360760834966301120,222782888877269937664,8233066075880951824000,320162458265691237967360

%N Total number of colors in all colored compositions of n using all colors of an initial interval of the color palette such that all parts have different color patterns and the patterns for parts i have i colors in (weakly) increasing order.

%H Alois P. Heinz, <a href="/A327588/b327588.txt">Table of n, a(n) for n = 0..200</a>

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

%p C:= binomial:

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

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

%p end:

%p a:= n-> add(k*add(b(n$2, i, 0)*(-1)^(k-i)*C(k, i), i=0..k), k=0..n):

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

%t c = Binomial;

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

%t b[n - i*j, Min[n-i*j, i-1], k, p+j]*c[c[k+i-1, i], j], {j, 0, n/i}]]];

%t a[n_] := Sum[k*Sum[b[n, n, i, 0]*(-1)^(k-i)*c[k, i], {i, 0, k}], {k, 0, n}];

%t Table[a[n], {n, 0, 21}] (* _Jean-François Alcover_, Apr 11 2022, after _Alois P. Heinz_ *)

%Y Cf. A327245.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Sep 17 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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)