OFFSET
0,5
COMMENTS
A181567 gives the case for unordered submultisets.
LINKS
Alois P. Heinz, Rows n = 0..26, flattened
Thomas Wieder, Maple program for A234574
EXAMPLE
For n=2 we have the regular multiset L = [1,1,2,2].
We get the following ordered submultisets from L:
For k=0 1 multiset: []
For k=1 2 multisets: [1], [2]
For k=2 4 multisets: [1,1], [1,2], [2,1], [2,2]
For k=3 6 multisets: [1,1,2], [1,2,1], [2,1,1], [1,2,2], [2,1,2], [2,2,1]
For k=4 6 multisets: [1,1,2,2], [1,2,1,2], [1,2,2,1], [2,1,1,2], [2,1,2,1], [2,2,1,1].
Triangle begins with:
1;
1, 1;
1, 2, 4, 6, 6;
1, 3, 9, 27, 78, 210, 510, 1050, 1680, 1680;
1, 4, 16, 64, 256, 1020, 4020, 15540, 58380, 210840, 722400, 2310000, 6745200, 17417400, 37837800, 63063000, 63063000;
...
MAPLE
# first Maple program: see link above
# second Maple program:
b:= proc(n, k, i) option remember; `if`(k=0, 1,
`if`(i<1, 0, add(b(n, k-j, i-1)/j!, j=0..n)))
end:
T:= (n, k)-> b(n, k, n)*k!:
seq(seq(T(n, k), k=0..n^2), n=0..5); # Alois P. Heinz, Jul 04 2016
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Thomas Wieder, Dec 29 2013
EXTENSIONS
More terms from Alois P. Heinz, Jul 04 2016
STATUS
approved