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!)
A330461 Array read by antidiagonals where A(n,k) is the number of multiset partitions with k levels that are strict at all levels and have total sum n. 5
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 3, 4, 4, 1, 1, 1, 1, 4, 7, 7, 5, 1, 1, 1, 1, 5, 12, 14, 11, 6, 1, 1, 1, 1, 6, 19, 29, 25, 16, 7, 1, 1, 1, 1, 8, 30, 57, 60, 41, 22, 8, 1, 1, 1, 1, 10, 49, 110, 141, 111, 63, 29, 9, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,12
LINKS
FORMULA
Column k is the k-th weigh transform of the all-ones sequence. The weigh transform of a sequence b has generating function Product_{i > 0} (1 + x^i)^b(i).
EXAMPLE
Array begins:
k=0 k=1 k=2 k=3 k=4 k=5 k=6
-----------------------------
n=0: 1 1 1 1 1 1 1
n=1: 1 1 1 1 1 1 1
n=2: 1 1 1 1 1 1 1
n=3: 1 2 3 4 5 6 7
n=4: 1 2 4 7 11 16 22
n=5: 1 3 7 14 25 41 63
n=6: 1 4 12 29 60 111 189
For example, the A(5,3) = 14 partitions are:
{{5}} {{1}}{{4}}
{{14}} {{2}}{{3}}
{{23}} {{1}}{{13}}
{{1}{4}} {{2}}{{12}}
{{2}{3}} {{1}}{{1}{3}}
{{1}{13}} {{2}}{{1}{2}}
{{2}{12}} {{1}}{{1}{12}}
MATHEMATICA
spl[n_, 0]:={n};
spl[n_, k_]:=Select[Join@@Table[Union[Sort/@Tuples[spl[#, k-1]&/@ptn]], {ptn, IntegerPartitions[n]}], UnsameQ@@#&];
Table[Length[spl[n-k, k]], {n, 0, 10}, {k, 0, n}]
PROG
(PARI)
WeighT(v)={Vec(exp(x*Ser(dirmul(v, vector(#v, n, (-1)^(n-1)/n))))-1, -#v)}
M(n, k=n)={my(L=List(), v=vector(n, i, 1)); listput(L, concat([1], v)); for(j=1, k, v=WeighT(v); listput(L, concat([1], v))); Mat(Col(L))~}
{ my(A=M(7)); for(i=1, #A, print(A[i, ])) } \\ Andrew Howroyd, Dec 31 2019
CROSSREFS
Columns are A000012 (k = 0), A000009 (k = 1), A050342 (k = 2), A050343 (k = 3), A050344 (k = 4).
The non-strict version is A290353.
Sequence in context: A213211 A294775 A369929 * A332649 A321724 A333737
KEYWORD
nonn,tabl
AUTHOR
Gus Wiseman, Dec 18 2019
STATUS
approved

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