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!)
A258323 Sum T(n,k) over all partitions lambda of n into k distinct parts of Product_{i:lambda} prime(i); triangle T(n,k), n>=0, 0<=k<=A003056(n), read by rows. 14

%I #30 Nov 01 2018 18:00:01

%S 1,0,2,0,3,0,5,6,0,7,10,0,11,29,0,13,43,30,0,17,94,42,0,19,128,136,0,

%T 23,231,293,0,29,279,551,210,0,31,484,892,330,0,37,584,1765,852,0,41,

%U 903,2570,1826,0,43,1051,4273,4207,0,47,1552,6747,6595,2310

%N Sum T(n,k) over all partitions lambda of n into k distinct parts of Product_{i:lambda} prime(i); triangle T(n,k), n>=0, 0<=k<=A003056(n), read by rows.

%H Alois P. Heinz, <a href="/A258323/b258323.txt">Rows n = 0..500, flattened</a>

%e T(6,2) = 43 because the partitions of 6 into 2 distinct parts are {[5,1], [4,2]} and prime(5)*prime(1) + prime(4)*prime(2) = 11*2 + 7*3 = 22 + 21 = 43.

%e Triangle T(n,k) begins:

%e 1

%e 0, 2;

%e 0, 3;

%e 0, 5, 6;

%e 0, 7, 10;

%e 0, 11, 29;

%e 0, 13, 43, 30;

%e 0, 17, 94, 42;

%e 0, 19, 128, 136;

%e 0, 23, 231, 293;

%e 0, 29, 279, 551, 210;

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

%p add(g(n-i*j, i-1)*(ithprime(i)*x)^j, j=0..min(1, n/i)))))

%p end:

%p T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(g(n$2)):

%p seq(T(n), n=0..20);

%t g[n_, i_] := g[n, i] = If[n==0, 1, If[i<1, 0, Expand[Sum[g[n-i*j, i-1] * (Prime[i]*x)^j, {j, 0, Min[1, n/i]}]]]]; T[n_] := Function[p, Table[ Coefficient[p, x, i], {i, 0, Exponent[p, x]}]][g[n, n]]; Table[T[n], {n, 0, 20}] // Flatten (* _Jean-François Alcover_, Jan 06 2017, after _Alois P. Heinz_ *)

%Y Columns k=0-10 give: A000007, A000040, A025129(n+1), A258358, A258359, A258360, A258361, A258362, A258363, A258364, A258365.

%Y Row sums give A147655.

%Y T(n*(n+1)/2,n) = A002110(n).

%Y T(n^2,n) = A321267(n).

%Y Cf. A000217, A003056, A145518, A246867.

%K nonn,tabf

%O 0,3

%A _Alois P. Heinz_, May 26 2015

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 11:14 EDT 2024. Contains 371936 sequences. (Running on oeis4.)