A371177
Positive integers whose prime indices include all distinct divisors of all prime indices.
Original entry on oeis.org
1, 2, 4, 6, 8, 10, 12, 16, 18, 20, 22, 24, 30, 32, 34, 36, 40, 42, 44, 48, 50, 54, 60, 62, 64, 66, 68, 72, 80, 82, 84, 88, 90, 96, 100, 102, 108, 110, 118, 120, 124, 126, 128, 132, 134, 136, 144, 150, 160, 162, 164, 166, 168, 170, 176, 180, 186, 192, 198, 200
Offset: 1
The terms together with their prime indices begin:
1: {}
2: {1}
4: {1,1}
6: {1,2}
8: {1,1,1}
10: {1,3}
12: {1,1,2}
16: {1,1,1,1}
18: {1,2,2}
20: {1,1,3}
22: {1,5}
24: {1,1,1,2}
30: {1,2,3}
32: {1,1,1,1,1}
34: {1,7}
36: {1,1,2,2}
40: {1,1,1,3}
42: {1,2,4}
44: {1,1,5}
48: {1,1,1,1,2}
A008284 counts partitions by length.
-
Select[Range[100],PrimeNu[#]==Length[Union @@ Divisors/@PrimePi/@First/@If[#==1,{},FactorInteger[#]]]&]
A371132
Number of integer partitions of n with fewer distinct parts than distinct divisors of parts.
Original entry on oeis.org
0, 0, 1, 1, 2, 3, 5, 6, 10, 14, 21, 28, 40, 53, 73, 96, 130, 170, 223, 288, 375, 480, 616, 780, 990, 1245, 1567, 1954, 2440, 3024, 3745, 4610, 5674, 6947, 8499, 10349, 12591, 15258, 18468, 22277, 26841, 32238, 38673, 46262, 55278, 65881, 78423, 93136, 110477
Offset: 0
The partition (4,3,1,1) has 3 distinct parts {1,3,4} and 4 distinct divisors of parts {1,2,3,4}, so is counted under a(9).
The a(0) = 0 through a(9) = 14 partitions:
. . (2) (3) (4) (5) (6) (7) (8) (9)
(22) (32) (33) (43) (44) (54)
(41) (42) (52) (53) (63)
(222) (61) (62) (72)
(411) (322) (332) (81)
(4111) (422) (333)
(431) (432)
(611) (441)
(2222) (522)
(41111) (621)
(3222)
(4311)
(6111)
(411111)
The complement counting all parts on the LHS is
A371172, ranks
A371165.
These partitions are ranked by
A371179.
A008284 counts partitions by length.
-
Table[Length[Select[IntegerPartitions[n],Length[Union[#]] < Length[Union@@Divisors/@#]&]],{n,0,30}]
A371180
Number of strict integer partitions of n with fewer parts than distinct divisors of parts.
Original entry on oeis.org
0, 0, 1, 1, 1, 3, 2, 4, 4, 7, 8, 10, 12, 15, 19, 22, 29, 33, 40, 47, 57, 68, 81, 95, 110, 129, 152, 178, 207, 240, 277, 317, 365, 422, 486, 558, 632, 723, 824, 940, 1067, 1210, 1371, 1544, 1751, 1977, 2233, 2508, 2820, 3162, 3555, 3983, 4465, 4990, 5571, 6224
Offset: 0
The strict partition (6,4,2,1) has 4 parts and 5 distinct divisors of parts {1,2,3,4,5}, so is counted under a(13).
The a(2) = 1 through a(11) = 10 partitions:
(2) (3) (4) (5) (6) (7) (8) (9) (10) (11)
(3,2) (4,2) (4,3) (5,3) (5,4) (6,4) (6,5)
(4,1) (5,2) (6,2) (6,3) (7,3) (7,4)
(6,1) (4,3,1) (7,2) (8,2) (8,3)
(8,1) (9,1) (9,2)
(4,3,2) (5,3,2) (10,1)
(6,2,1) (5,4,1) (5,4,2)
(6,3,1) (6,3,2)
(6,4,1)
(8,2,1)
The version for equality is
A371128.
A008284 counts partitions by length.
Cf.
A003963,
A239312,
A319055,
A355529,
A370803,
A370808,
A370813,
A371130 (
A370802),
A371171,
A371172 (
A371165),
A371173 (
A371168).
-
Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&Length[Union[#]] < Length[Union@@Divisors/@#]&]],{n,0,30}]
Showing 1-3 of 3 results.
Comments