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!)
A321296 Number T(n,k) of colored set partitions of [n] where colors of the elements of subsets are in (weakly) increasing order and exactly k colors are used; triangle T(n,k), n>=0, 0<=k<=n, read by rows. 6

%I #29 Apr 30 2020 07:51:18

%S 1,0,1,0,2,3,0,5,20,16,0,15,122,237,131,0,52,774,2751,3524,1496,0,203,

%T 5247,30470,68000,65055,22482,0,877,38198,341244,1181900,1913465,

%U 1462320,426833,0,4140,298139,3949806,19946654,48636035,61692855,39282229,9934563

%N Number T(n,k) of colored set partitions of [n] where colors of the elements of subsets are in (weakly) increasing order and exactly k colors are used; triangle T(n,k), n>=0, 0<=k<=n, read by rows.

%H Alois P. Heinz, <a href="/A321296/b321296.txt">Rows n = 0..140, flattened</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a>

%e T(3,2) = 20: 1a2a3b, 1a2b3b, 1a|2a3b, 1a|2b3b, 1b|2a3a, 1b|2a3b, 1a3b|2a, 1b3b|2a, 1a3a|2b, 1a3b|2b, 1a2b|3a, 1b2b|3a, 1a2a|3b, 1a2b|3b, 1a|2a|3b, 1a|2b|3a, 1b|2a|3a, 1a|2b|3b, 1b|2a|3b, 1b|2b|3a.

%e Triangle T(n,k) begins:

%e 1;

%e 0, 1;

%e 0, 2, 3;

%e 0, 5, 20, 16;

%e 0, 15, 122, 237, 131;

%e 0, 52, 774, 2751, 3524, 1496;

%e 0, 203, 5247, 30470, 68000, 65055, 22482;

%e 0, 877, 38198, 341244, 1181900, 1913465, 1462320, 426833;

%e ...

%p A:= proc(n, k) option remember; `if`(n=0, 1, add(A(n-j, k)*

%p binomial(n-1, j-1)*binomial(k+j-1, j), j=1..n))

%p end:

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

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

%t A[n_, k_] := A[n, k] = If[n == 0, 1, Sum[A[n-j, k] Binomial[n-1, j-1]* Binomial[k + j - 1, j], {j, n}]];

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

%t Table[T[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Apr 30 2020, after _Alois P. Heinz_ *)

%Y Columns k=0-2 give: A000007, A000110 (for n>0), A325890.

%Y Main diagonal gives A023998.

%Y Row sums give A325888.

%Y T(2n,n) gives A325889.

%Y Cf. A322670.

%K nonn,tabl

%O 0,5

%A _Alois P. Heinz_, Aug 29 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 19 13:25 EDT 2024. Contains 372694 sequences. (Running on oeis4.)