A385216
Greatest Heinz number of a sparse submultiset of the prime indices of n, where a multiset is sparse iff 1 is not a first difference.
Original entry on oeis.org
1, 2, 3, 4, 5, 3, 7, 8, 9, 10, 11, 4, 13, 14, 5, 16, 17, 9, 19, 20, 21, 22, 23, 8, 25, 26, 27, 28, 29, 10, 31, 32, 33, 34, 7, 9, 37, 38, 39, 40, 41, 21, 43, 44, 9, 46, 47, 16, 49, 50, 51, 52, 53, 27, 55, 56, 57, 58, 59, 20, 61, 62, 63, 64, 65, 33, 67, 68, 69
Offset: 1
The prime indices of 12 are {1,1,2}, with sparse submultisets {{},{1},{2},{1,1}}, with Heinz numbers {1,2,3,4}, so a(12) = 4.
The prime indices of 36 are {1,1,2,2}, with sparse submultisets {{},{1},{2},{1,1},{2,2}}, with Heinz numbers {1,2,3,4,9}, so a(36) = 9.
The prime indices of 462 are {1,2,4,5}, with sparse submultisets {{},{1},{2},{4},{5},{1,4},{2,4},{1,5},{2,5}}, with Heinz numbers {1,2,3,7,11,14,21,22,33}, so a(462) = 33.
The union is
A319630 (Heinz numbers of sparse multisets), complement
A104210.
A000005 counts divisors (or submultisets of prime indices).
A212166 ranks partitions with max multiplicity = length, counted by
A239964.
A381542 ranks partitions with max part = max multiplicity, counted by
A240312.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Table[Max@@Select[Divisors[n],FreeQ[Differences[prix[#]],1]&],{n,100}]
A239966
Number of partitions of n such that (number of distinct parts) = minimal multiplicity of the parts.
Original entry on oeis.org
0, 1, 1, 1, 1, 1, 2, 2, 4, 3, 6, 5, 8, 6, 13, 6, 15, 10, 19, 12, 24, 15, 33, 22, 38, 28, 52, 39, 61, 51, 78, 66, 94, 85, 118, 103, 140, 130, 168, 165, 194, 190, 244, 230, 274, 285, 328, 327, 394, 386, 449, 485, 522, 540, 646, 639, 712, 790, 846, 880, 1025
Offset: 0
a(8) counts these 4 partitions : 8, 3311, 22211, 221111.
-
z = 61; d[p_] := d[p] = Length[DeleteDuplicates[p]]; m[p_] := Min[Map[Length, Split[p]]]; Table[Count[IntegerPartitions[n], p_ /; d[p] == m[p]], {n, 0, z}]
A382526
Number of integer partitions of n with fewer ones than greatest multiplicity.
Original entry on oeis.org
0, 0, 1, 1, 2, 3, 4, 6, 9, 12, 16, 24, 30, 41, 56, 72, 94, 124, 158, 205, 262, 331, 419, 531, 663, 829, 1033, 1281, 1581, 1954, 2393, 2936, 3584, 4366, 5300, 6433, 7764, 9374, 11277, 13548, 16225, 19425, 23166, 27623, 32842, 39004, 46212, 54719, 64610, 76251
Offset: 0
The a(2) = 1 through a(9) = 12 partitions:
(2) (3) (4) (5) (6) (7) (8) (9)
(22) (32) (33) (43) (44) (54)
(221) (42) (52) (53) (63)
(222) (322) (62) (72)
(331) (332) (333)
(2221) (422) (432)
(2222) (441)
(3221) (522)
(22211) (3222)
(3321)
(4221)
(22221)
The complement (greater than or equal to) is
A241131 except first, ranks
A360015.
The opposite version (greater than) is
A241131 shifted except first, ranks
A360013.
A091602 counts partitions by the greatest multiplicity, rank statistic
A051903.
A239964 counts partitions with max multiplicity = length, ranks
A212166.
A240312 counts partitions with max part = max multiplicity, ranks
A381542.
A382302 counts partitions with max = max multiplicity = distinct length, ranks
A381543.
Comments