The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A370207 Number T(n,k) of unordered pairs of partitions of n with exactly k common parts; triangle T(n,k), n>=0, 0<=k<=n, read by rows. 2

%I #21 Feb 11 2024 18:55:25

%S 1,0,1,1,1,1,2,2,1,1,6,4,3,1,1,8,10,5,3,1,1,24,18,13,6,3,1,1,30,42,23,

%T 14,6,3,1,1,74,72,55,26,15,6,3,1,1,110,146,95,61,27,15,6,3,1,1,219,

%U 256,201,109,64,28,15,6,3,1,1,309,475,351,227,115,65,28,15,6,3,1,1

%N Number T(n,k) of unordered pairs of partitions of n with exactly k common parts; triangle T(n,k), n>=0, 0<=k<=n, read by rows.

%H Alois P. Heinz, <a href="/A370207/b370207.txt">Rows n = 0..200, flattened</a>

%F T(n,k) = (A370005(n,k) + A072233(n,k))/2.

%e T(4,0) = 6: (1111,22), (1111,4), (211,4), (22,31), (22,4), (31,4).

%e T(4,1) = 4: (1111,31), (211,22), (211,31), (4,4).

%e T(4,2) = 3: (1111,211), (22,22), (31,31).

%e T(4,3) = 1: (211,211).

%e T(4,4) = 1: (1111,1111).

%e Triangle T(n,k) begins:

%e 1;

%e 0, 1;

%e 1, 1, 1;

%e 2, 2, 1, 1;

%e 6, 4, 3, 1, 1;

%e 8, 10, 5, 3, 1, 1;

%e 24, 18, 13, 6, 3, 1, 1;

%e 30, 42, 23, 14, 6, 3, 1, 1;

%e 74, 72, 55, 26, 15, 6, 3, 1, 1;

%e 110, 146, 95, 61, 27, 15, 6, 3, 1, 1;

%e 219, 256, 201, 109, 64, 28, 15, 6, 3, 1, 1;

%e ...

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

%p add(add(expand(b(sort([n-i*j, m-i*h])[], i-1)*

%p x^min(j, h)), h=0..m/i), j=0..n/i)))

%p end:

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

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

%p end:

%p T:= (n, k)-> (coeff(b(n$3), x, k)+coeff(g(n$2), x, k))/2:

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

%Y Column k=0 gives A260669.

%Y Row sums and T(2n,n) give A086737.

%Y Cf. A000041, A000217, A008284, A072233, A370005.

%K nonn,tabl

%O 0,7

%A _Alois P. Heinz_, Feb 11 2024

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 17 10:20 EDT 2024. Contains 372594 sequences. (Running on oeis4.)