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!)
A326649 Total number of colors in all colored integer partitions of n using all colors of an initial interval of the color palette such that each block of part i with multiplicity j has a pattern of i*j distinct colors in increasing order. 3

%I #24 Dec 09 2020 08:51:37

%S 0,1,4,19,81,413,2439,14655,86844,573196,4224230,32280154,249433713,

%T 1925416359,15732592327,139542345546,1304524118159,12445507282579,

%U 119198874300879,1137647406084952,11183828252431175,116368970786569604,1278400213028604214

%N Total number of colors in all colored integer partitions of n using all colors of an initial interval of the color palette such that each block of part i with multiplicity j has a pattern of i*j distinct colors in increasing order.

%H Alois P. Heinz, <a href="/A326649/b326649.txt">Table of n, a(n) for n = 0..300</a>

%F a(n) = Sum_{k=A185283(n)..n} k * A326616(n,k) = Sum_{k=A185283(n)..n} k * A326617(n,k).

%p g:= proc(n) option remember; `if`(n=0, 0, numtheory[sigma](n)+g(n-1)) end:

%p h:= proc(n) option remember; local k; for k from

%p `if`(n=0, 0, h(n-1)) do if g(k)>=n then return k fi od

%p end:

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

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

%p end:

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

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

%t g[n_] := g[n] = If[n == 0, 0, DivisorSigma[1, n] + g[n - 1]];

%t h[n_] := h[n] = Module[{k}, For[k = If[n == 0, 0, h[n - 1]], True, k++, If[g[k] >= n, Return [k]]]];

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

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

%t a /@ Range[0, 25] (* _Jean-François Alcover_, Dec 09 2020, after _Alois P. Heinz_ *)

%Y Cf. A185283, A326616, A326617.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Sep 12 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 May 4 13:30 EDT 2024. Contains 372243 sequences. (Running on oeis4.)