A381807 Number of multisets that can be obtained by choosing a constant partition of each m = 0..n and taking the multiset union.
1, 1, 2, 4, 12, 24, 92, 184, 704, 2016, 7600, 15200, 80664, 161328, 601696, 2198824, 9868544, 19737088, 102010480, 204020960
Offset: 0
Examples
The a(1) = 1 through a(4) = 12 multisets: {1} {1,2} {1,2,3} {1,2,3,4} {1,1,1} {1,1,1,3} {1,1,1,3,4} {1,1,1,1,2} {1,2,2,2,3} {1,1,1,1,1,1} {1,1,1,1,2,4} {1,1,1,2,2,3} {1,1,1,1,1,1,4} {1,1,1,1,1,2,3} {1,1,1,1,2,2,2} {1,1,1,1,1,1,1,3} {1,1,1,1,1,1,2,2} {1,1,1,1,1,1,1,1,2} {1,1,1,1,1,1,1,1,1,1}
Crossrefs
Programs
-
Mathematica
Table[Length[Union[Sort/@Join@@@Tuples[Select[IntegerPartitions[#],SameQ@@#&]&/@Range[n]]]],{n,0,10}]
Extensions
a(16)-a(19) from Christian Sievers, Jun 04 2025
Comments