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!)
A358837 Number of odd-length multiset partitions of integer partitions of n. 3
0, 1, 2, 4, 7, 14, 28, 54, 106, 208, 399, 757, 1424, 2642, 4860, 8851, 15991, 28673, 51095, 90454, 159306, 279067, 486598, 844514, 1459625, 2512227, 4307409, 7357347, 12522304, 21238683, 35903463, 60497684, 101625958, 170202949, 284238857, 473356564, 786196353 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: ((1/Product_{k>=1} (1-x^k)^A000041(k)) - (1/Product_{k>=1} (1+x^k)^A000041(k))) / 2. - Andrew Howroyd, Dec 31 2022
EXAMPLE
The a(1) = 1 through a(5) = 14 multiset partitions:
{{1}} {{2}} {{3}} {{4}} {{5}}
{{1,1}} {{1,2}} {{1,3}} {{1,4}}
{{1,1,1}} {{2,2}} {{2,3}}
{{1},{1},{1}} {{1,1,2}} {{1,1,3}}
{{1,1,1,1}} {{1,2,2}}
{{1},{1},{2}} {{1,1,1,2}}
{{1},{1},{1,1}} {{1,1,1,1,1}}
{{1},{1},{3}}
{{1},{2},{2}}
{{1},{1},{1,2}}
{{1},{2},{1,1}}
{{1},{1},{1,1,1}}
{{1},{1,1},{1,1}}
{{1},{1},{1},{1},{1}}
MATHEMATICA
sps[{}]:={{}}; sps[set:{i_, ___}]:=Join@@Function[s, Prepend[#, s]&/@sps[Complement[set, s]]]/@Cases[Subsets[set], {i, ___}];
mps[set_]:=Union[Sort[Sort/@(#/.x_Integer:>set[[x]])]&/@sps[Range[Length[set]]]];
Table[Length[Select[Join@@mps/@Reverse/@IntegerPartitions[n], OddQ[Length[#]]&]], {n, 0, 10}]
PROG
(PARI)
P(v, y) = {1/prod(k=1, #v, (1 - y*x^k + O(x*x^#v))^v[k])}
seq(n) = {my(v=vector(n, k, numbpart(k))); (Vec(P(v, 1)) - Vec(P(v, -1)))/2} \\ Andrew Howroyd, Dec 31 2022
CROSSREFS
The version for set partitions is A024429.
These multiset partitions are ranked by A026424.
The version for partitions is A027193.
The version for twice-partitions is A358824.
A001970 counts multiset partitions of integer partitions.
A063834 counts twice-partitions, strict A296122.
Sequence in context: A018330 A068060 A239791 * A251653 A057744 A251708
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 05 2022
EXTENSIONS
Terms a(11) and beyond from Andrew Howroyd, Dec 31 2022
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 13 19:11 EDT 2024. Contains 372522 sequences. (Running on oeis4.)