A381993
Number of integer partitions of n that cannot be partitioned into constant multisets with a common sum.
Original entry on oeis.org
0, 0, 0, 1, 1, 5, 4, 13, 13, 25, 33, 54, 54, 99, 124, 166, 207, 295, 352, 488, 591, 780, 987, 1253, 1488, 1951, 2419, 2993, 3665, 4563, 5508, 6840, 8270, 10127, 12289, 14869, 17781, 21635, 25992, 31167, 37184, 44581, 53008, 63259, 75076, 89080, 105531, 124752, 146842, 173516, 204141, 239921, 281461, 329929, 385852
Offset: 0
The multiset partition {{2},{2},{1,1},{1,1}} has both properties (constant blocks and common sum), so (2,2,1,1,1,1) is not counted under a(8). We can also use {{2,2},{1,1,1,1}}.
The a(3) = 1 through a(8) = 13 partitions:
(21) (31) (32) (42) (43) (53)
(41) (51) (52) (62)
(221) (321) (61) (71)
(311) (411) (322) (332)
(2111) (331) (431)
(421) (521)
(511) (611)
(2221) (3221)
(3211) (3311)
(4111) (4211)
(22111) (5111)
(31111) (32111)
(211111) (311111)
Twice-partitions of this type (constant with equal) are counted by
A279789.
For distinct instead of equal block-sums we have
A381717.
Normal multiset partitions of this type are counted by
A382204.
A050361 counts factorizations into distinct prime powers, see
A381715.
-
mce[y_]:=Table[ConstantArray[y[[1]],#]&/@ptn,{ptn,IntegerPartitions[Length[y]]}];
Table[Length[Select[IntegerPartitions[n],Length[Select[Join@@@Tuples[mce/@Split[#]],SameQ@@Total/@#&]]==0&]],{n,0,30}]
A381637
Number of multisets that can be obtained by taking the sum of each block of a multiset partition of the prime indices of n into blocks with distinct sums.
Original entry on oeis.org
1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 2, 2, 1, 3, 1, 3, 2, 2, 1, 3, 1, 2, 2, 3, 1, 4, 1, 3, 2, 2, 2, 4, 1, 2, 2, 4, 1, 5, 1, 3, 3, 2, 1, 4, 1, 3, 2, 3, 1, 5, 2, 5, 2, 2, 1, 5, 1, 2, 2, 4, 2, 5, 1, 3, 2, 4, 1, 5, 1, 2, 3, 3, 2, 5, 1, 5, 2, 2, 1, 6, 2, 2, 2
Offset: 1
The prime indices of 84 are {1,1,2,4}, with 7 multiset partitions into blocks with distinct sums:
{{1,1,2,4}}
{{1},{1,2,4}}
{{2},{1,1,4}}
{{1,1},{2,4}}
{{1,2},{1,4}}
{{1},{2},{1,4}}
{{1},{4},{1,2}}
with block-sums: {8}, {1,7}, {2,6}, {2,6}, {3,5}, {1,2,5}, {1,3,4}, of which 6 are distinct, so a(84) = 6.
For distinct blocks instead of distinct block-sums we have
A381452.
For equal instead of distinct block-sums we have
A381872, before sums
A321455.
Other multiset partitions of prime indices:
A003963 gives product of prime indices.
A265947 counts refinement-ordered pairs of integer partitions.
Cf.
A000720,
A001222,
A001970,
A002846,
A045778,
A066328,
A213385,
A299200,
A299201,
A299202,
A300385,
A317142.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
sps[{}]:={{}};sps[set:{i_,_}]:=Join@@Function[s,Prepend[#,s]&/@sps[Complement[set,s]]]/@Cases[Subsets[set],{i,_}];
mps[mset_]:=Union[Sort[Sort/@(#/.x_Integer:>mset[[x]])]&/@sps[Range[Length[mset]]]];
Table[Length[Union[Sort[Total/@#]&/@Select[mps[prix[n]],UnsameQ@@Total/@#&]]],{n,100}]
A383014
Numbers whose prime indices can be partitioned into constant blocks with a common sum.
Original entry on oeis.org
1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 16, 17, 19, 23, 25, 27, 29, 31, 32, 36, 37, 40, 41, 43, 47, 48, 49, 53, 59, 61, 63, 64, 67, 71, 73, 79, 81, 83, 89, 97, 101, 103, 107, 108, 109, 112, 113, 121, 125, 127, 128, 131, 137, 139, 144, 149, 151, 157, 163, 167, 169
Offset: 1
The prime indices of 36 are {1,1,2,2}, and a partition into constant blocks with a common sum is: {{2},{2},{1,1}}, so 36 is in the sequence.
The prime indices of 43200 are {1,1,1,1,1,1,2,2,2,3,3}, and a partition into constant blocks with a common sum is: {{{1,1,1,1,1,1},{2,2,2},{3,3}}}, so 43200 is in the sequence.
The prime indices of 520000 are {1,1,1,1,1,1,3,3,3,3,6} and a partition into constant blocks with a common sum is: {{1,1,1,1,1,1},{3,3},{3,3},{6}}, so 520000 is in the sequence.
The terms together with their prime indices begin:
1: {}
2: {1}
3: {2}
4: {1,1}
5: {3}
7: {4}
8: {1,1,1}
9: {2,2}
11: {5}
12: {1,1,2}
13: {6}
16: {1,1,1,1}
17: {7}
19: {8}
23: {9}
25: {3,3}
27: {2,2,2}
29: {10}
31: {11}
32: {1,1,1,1,1}
36: {1,1,2,2}
37: {12}
40: {1,1,1,3}
Twice-partitions of this type (constant blocks with a common sum) are counted by
A279789.
For distinct sums we have the complement of
A381636.
For strict blocks we have the complement of
A381719.
For distinct sums and strict blocks we have the complement of
A381806.
These are the positions of positive terms in
A381995.
Partitions of this type are counted by
A383093.
A001055 counts factorizations (multiset partitions of prime indices), strict
A045778.
A050361 counts factorizations into distinct prime powers.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n], {p_,k_}:>Table[PrimePi[p],{k}]]]];
mce[y_]:=Table[ConstantArray[y[[1]],#]&/@ptn, {ptn,IntegerPartitions[Length[y]]}];
Select[Range[100], Select[Join@@@Tuples[mce/@Split[prix[#]]], SameQ@@Total/@#&]!={}&]
A382215
MM-numbers of multiset partitions into constant blocks with a common sum.
Original entry on oeis.org
1, 2, 3, 4, 5, 7, 8, 9, 11, 16, 17, 19, 23, 25, 27, 31, 32, 35, 41, 49, 53, 59, 64, 67, 81, 83, 97, 103, 109, 121, 125, 127, 128, 131, 157, 175, 179, 191, 209, 211, 227, 241, 243, 245, 256, 277, 283, 289, 311, 331, 343, 353, 361, 367, 391, 401, 419, 431, 461
Offset: 1
The terms together with their prime indices of prime indices begin:
1: {}
2: {{}}
3: {{1}}
4: {{},{}}
5: {{2}}
7: {{1,1}}
8: {{},{},{}}
9: {{1},{1}}
11: {{3}}
16: {{},{},{},{}}
17: {{4}}
19: {{1,1,1}}
23: {{2,2}}
25: {{2},{2}}
27: {{1},{1},{1}}
31: {{5}}
32: {{},{},{},{},{}}
35: {{2},{1,1}}
41: {{6}}
49: {{1,1},{1,1}}
53: {{1,1,1,1}}
59: {{7}}
Twice-partitions of this type are counted by
A279789.
Factorizations of this type are counted by
A381995.
For strict blocks and distinct sums we have
A382201, counted by
A381633.
Normal multiset partitions of this type are counted by
A382204.
For strict instead of constant blocks we have
A382304, counted by
A382080.
For sets of constant multisets with distinct sums
A382426, counted by
A381635.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n], {p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[100],SameQ@@Total/@prix/@prix[#] && And@@SameQ@@@prix/@prix[#]&]
-
is(k) = my(f=factor(k)[, 1]~, k, p, v=vector(#f, i, primepi(f[i]))); for(i=1, #v, k=isprimepower(v[i], &p); if(k||v[i]==1, v[i]=k*primepi(p), return(0))); #Set(v)<2; \\ Jinyuan Wang, Apr 02 2025
A383093
Number of integer partitions of n that can be partitioned into constant blocks with a common sum.
Original entry on oeis.org
1, 1, 2, 2, 4, 2, 7, 2, 9, 5, 9, 2, 23, 2, 11, 10, 24, 2, 33, 2, 36, 12, 15, 2, 87, 7, 17, 17, 53, 2, 96, 2, 79, 16, 21, 14, 196, 2, 23, 18, 154, 2, 166, 2, 99, 54, 27, 2, 431, 9, 85, 22, 128, 2, 303, 18, 261, 24, 33, 2, 771, 2, 35, 73, 331, 20, 422, 2, 198, 28, 216, 2, 1369
Offset: 0
The partition (4,4,2,2,2,2,1,1,1,1,1,1,1,1) has two partitions into constant blocks with a common sum: {{4,4},{2,2,2,2},{1,1,1,1,1,1,1,1}} and {{4},{4},{2,2},{2,2},{1,1,1,1},{1,1,1,1}}, so is counted under a(24).
The a(1) = 1 through a(8) = 9 partitions:
(1) (2) (3) (4) (5) (6) (7) (8)
(11) (111) (22) (11111) (33) (1111111) (44)
(211) (222) (422)
(1111) (2211) (2222)
(3111) (22211)
(21111) (41111)
(111111) (221111)
(2111111)
(11111111)
Twice-partitions of this type (constant with common) are counted by
A279789.
Multiset partitions of this type are ranked by
A383309.
Normal multiset partitions of this type are counted by
A382203, sets
A381718.
For distinct instead of equal block-sums we have
A382427.
A050361 counts factorizations into distinct prime powers, see
A381715.
A323774 counts partitions into constant blocks with a common sum
Cf.
A006171,
A047966,
A279784,
A295935,
A323774,
A326534,
A353864,
A355743,
A381716,
A382076,
A382204.
-
mce[y_]:=Table[ConstantArray[y[[1]],#]&/@ptn,{ptn,IntegerPartitions[Length[y]]}];
Table[Length[Select[IntegerPartitions[n],Length[Select[Join@@@Tuples[mce/@Split[#]],SameQ@@Total/@#&]]>0&]],{n,0,30}]
A382524
Number of ways to choose a different constant partition of each part of a constant partition of n.
Original entry on oeis.org
1, 1, 2, 2, 5, 2, 6, 2, 10, 3, 6, 2, 24, 2, 6, 4, 17, 2, 36, 2, 18, 4, 6, 2, 86, 3, 6, 10, 18, 2, 44, 2, 50, 4, 6, 4, 159, 2, 6, 4, 62, 2, 44, 2, 18, 30, 6, 2, 486, 3, 12, 4, 18, 2, 140, 4, 62, 4, 6, 2, 932, 2, 6, 30, 157, 4, 44, 2, 18, 4, 20, 2, 1500, 2, 6
Offset: 0
The a(1) = 1 through a(8) = 10 twice-partitions:
(1) (2) (3) (4) (5) (6) (7) (8)
(11) (111) (22) (11111) (33) (1111111) (44)
(1111) (222) (2222)
(11)(2) (111111) (22)(4)
(2)(11) (111)(3) (4)(22)
(3)(111) (1111)(4)
(4)(1111)
(11111111)
(1111)(22)
(22)(1111)
For distinct instead of equal block-sums we have
A279786.
This is the strict case of
A279789.
Partitions with no partition of this type are counted by
A382076, strict case of
A381993.
Normal multiset partitions of this type are counted by the strict case of
A382204.
A006171 counts multiset partitions into constant blocks of integer partitions of n.
A050361 counts factorizations into distinct prime powers, see
A381715.
Cf.
A000005,
A000040,
A000688,
A018818,
A047966,
A063834,
A260685,
A279784,
A356065,
A381453,
A381455.
-
Table[If[n==0,1,Sum[Binomial[Length[Divisors[n/d]],d]*d!,{d,Divisors[n]}]],{n,0,100}]
A381807
Number of multisets that can be obtained by choosing a constant partition of each m = 0..n and taking the multiset union.
Original entry on oeis.org
1, 1, 2, 4, 12, 24, 92, 184, 704, 2016, 7600, 15200, 80664, 161328, 601696, 2198824, 9868544, 19737088, 102010480, 204020960
Offset: 0
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}
The number of possible choices was
A066843.
A000688 counts multiset partitions into constant blocks.
A050361 and
A381715 count multiset partitions into constant multisets.
A066723 counts partitions coarser than {1..n}, primorial case of
A317141.
A265947 counts refinement-ordered pairs of integer partitions.
A321470 counts partitions finer than {1..n}, primorial case of
A300383.
Cf.
A001970,
A018818,
A213385,
A299200,
A321467,
A321468,
A321471,
A321514,
A355731,
A381453,
A381455.
-
Table[Length[Union[Sort/@Join@@@Tuples[Select[IntegerPartitions[#],SameQ@@#&]&/@Range[n]]]],{n,0,10}]
A381872
Number of multisets that can be obtained by taking the sum of each block of a multiset partition of the prime indices of n into blocks having a common sum.
Original entry on oeis.org
1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 2, 1, 1, 1
Offset: 1
The prime indices of 144 are {1,1,1,1,2,2}, with the following 4 multiset partitions having common block sum:
{{1,1,1,1,2,2}}
{{2,2},{1,1,1,1}}
{{1,1,2},{1,1,2}}
{{2},{2},{1,1},{1,1}}
with sums: 8, 4, 4, 2, of which 3 are distinct, so a(144) = 3.
The prime indices of 1296 are {1,1,1,1,2,2,2,2}, with the following 7 multiset partitions having common block sum:
{{1,1,1,1,2,2,2,2}}
{{2,2,2},{1,1,1,1,2}}
{{1,1,2,2},{1,1,2,2}}
{{2,2},{2,2},{1,1,1,1}}
{{2,2},{1,1,2},{1,1,2}}
{{1,2},{1,2},{1,2},{1,2}}
{{2},{2},{2},{2},{1,1},{1,1}}
with sums: 12, 6, 6, 4, 4, 3, 2, of which 5 are distinct, so a(1296) = 5.
With equal blocks instead of sums we have
A089723.
Positions of terms > 1 are
A321454.
With distinct instead of equal sums we have
A381637, before sums
A321469.
A265947 counts refinement-ordered pairs of integer partitions.
Other multiset partitions of prime indices:
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
sps[{}]:={{}};sps[set:{i_,_}]:=Join@@Function[s,Prepend[#,s]&/@sps[Complement[set,s]]]/@Cases[Subsets[set],{i,_}];
mps[mset_]:=Union[Sort[Sort/@(#/.x_Integer:>mset[[x]])]&/@sps[Range[Length[mset]]]];
Table[Length[Union[Sort[Total/@#]&/@Select[mps[prix[n]],SameQ@@Total/@#&]]],{n,100}]
Comments