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!)
A330452 Number of set partitions of strict multiset partitions of integer partitions of n. 8
1, 1, 2, 7, 13, 34, 81, 175, 403, 890, 1977, 4262, 9356, 19963, 42573, 90865, 191206, 401803, 837898, 1744231, 3607504, 7436628, 15254309, 31185686, 63552725, 128963236, 260933000, 526140540, 1057927323, 2120500885, 4239012067, 8449746787, 16799938614 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of sets of disjoint nonempty sets of nonempty multisets of positive integers with total sum n.
LINKS
FORMULA
a(n) = Sum_{0 <= k <= n} A330463(n,k) * A000110(k).
EXAMPLE
The a(4) = 13 partitions:
((4)) ((22)) ((31)) ((211)) ((1111))
((1)(3)) ((1)(21)) ((1)(111))
((1))((3)) ((2)(11)) ((1))((111))
((1))((21))
((2))((11))
MATHEMATICA
ppl[n_, k_]:=Switch[k, 0, {n}, 1, IntegerPartitions[n], _, Join@@Table[Union[Sort/@Tuples[ppl[#, k-1]&/@ptn]], {ptn, IntegerPartitions[n]}]];
Table[Length[Select[ppl[n, 3], UnsameQ@@Join@@#&]], {n, 0, 10}]
PROG
(PARI) \\ here BellP is A000110 as series.
BellP(n)={serlaplace(exp( exp(x + O(x*x^n)) - 1))}
seq(n)={my(b=BellP(n), v=Vec(prod(k=1, n, (1 + x^k*y + O(x*x^n))^numbpart(k)))); vector(#v, n, my(r=v[n]); sum(k=0, n-1, polcoeff(b, k)*polcoef(r, k)))} \\ Andrew Howroyd, Dec 29 2019
CROSSREFS
Sequence in context: A079119 A309368 A051748 * A086904 A358906 A360869
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 16 2019
EXTENSIONS
Terms a(18) and beyond from Andrew Howroyd, Dec 29 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 12 23:35 EDT 2024. Contains 372497 sequences. (Running on oeis4.)