A360252
Numbers for which the prime indices have greater mean than the distinct prime indices.
Original entry on oeis.org
18, 50, 54, 75, 98, 108, 147, 150, 162, 242, 245, 250, 294, 324, 338, 350, 363, 375, 450, 486, 490, 500, 507, 578, 588, 605, 648, 686, 722, 726, 735, 750, 845, 847, 867, 882, 972, 1014, 1029, 1050, 1058, 1078, 1083, 1125, 1183, 1210, 1250, 1274, 1350, 1372
Offset: 1
The terms together with their prime indices begin:
18: {1,2,2}
50: {1,3,3}
54: {1,2,2,2}
75: {2,3,3}
98: {1,4,4}
108: {1,1,2,2,2}
147: {2,4,4}
150: {1,2,3,3}
162: {1,2,2,2,2}
242: {1,5,5}
245: {3,4,4}
250: {1,3,3,3}
294: {1,2,4,4}
324: {1,1,2,2,2,2}
For example, the prime indices of 350 are {1,3,3,4} with mean 11/4, and the distinct prime indices are {1,3,4} with mean 8/3, so 350 is in the sequence.
These partitions are counted by
A360250.
A316413 lists numbers whose indices have integer mean, distinct
A326621.
Cf.
A000975,
A051293,
A058398,
A067340,
A067538,
A324570,
A327482,
A359903,
A360005,
A360241,
A360248.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[100],Mean[prix[#]]>Mean[Union[prix[#]]]&]
A360253
Numbers for which the prime indices have lesser mean than the distinct prime indices.
Original entry on oeis.org
12, 20, 24, 28, 40, 44, 45, 48, 52, 56, 60, 63, 68, 72, 76, 80, 84, 88, 92, 96, 99, 104, 112, 116, 117, 120, 124, 126, 132, 135, 136, 140, 144, 148, 152, 153, 156, 160, 164, 168, 171, 172, 175, 176, 180, 184, 188, 189, 192, 198, 200, 204, 207, 208, 212, 220
Offset: 1
The terms together with their prime indices begin:
12: {1,1,2}
20: {1,1,3}
24: {1,1,1,2}
28: {1,1,4}
40: {1,1,1,3}
44: {1,1,5}
45: {2,2,3}
48: {1,1,1,1,2}
52: {1,1,6}
56: {1,1,1,4}
60: {1,1,2,3}
63: {2,2,4}
68: {1,1,7}
72: {1,1,1,2,2}
For example, the prime indices of 350 are {1,3,3,4} with mean 11/4, and the distinct prime indices are {1,3,4} with mean 8/3, so 350 is not in the sequence.
These partitions are counted by
A360251.
A316413 lists numbers whose indices have integer mean, distinct
A326621.
Cf.
A000975,
A051293,
A058398,
A067340,
A067538,
A324570,
A327482,
A359903,
A360005,
A360241,
A360248.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[100],Mean[prix[#]]
A360454
Numbers for which the prime multiplicities (or sorted signature) have the same median as the prime indices.
Original entry on oeis.org
1, 2, 9, 54, 100, 120, 125, 135, 168, 180, 189, 240, 252, 264, 280, 297, 300, 312, 336, 351, 396, 408, 440, 450, 456, 459, 468, 480, 513, 520, 528, 540, 552, 560, 588, 612, 616, 621, 624, 672, 680, 684, 696, 728, 744, 756, 760, 783, 816, 828, 837, 880, 882
Offset: 1
The terms together with their prime indices begin:
1: {}
2: {1}
9: {2,2}
54: {1,2,2,2}
100: {1,1,3,3}
120: {1,1,1,2,3}
125: {3,3,3}
135: {2,2,2,3}
168: {1,1,1,2,4}
180: {1,1,2,2,3}
189: {2,2,2,4}
240: {1,1,1,1,2,3}
For example, the prime indices of 336 are {1,1,1,1,2,4} with median 1 and multiplicities {1,1,4} with median 1, so 336 is in the sequence.
For distinct indices instead of indices we have
A360453, counted by
A360455.
For distinct indices instead of multiplicities:
A360249, counted by
A360245.
These partitions are counted by
A360456.
A240219 counts partitions with mean equal to median, ranked by
A359889.
A359894 counts partitions with mean different from median, ranks
A359890.
A360005 gives median of prime indices (times two).
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[1000],Median[prix[#]]==Median[Length/@Split[prix[#]]]&]
A359904
Numbers whose prime factors and prime signature have the same mean.
Original entry on oeis.org
1, 4, 27, 400, 3125, 9072, 10800, 14580, 24057, 35721, 50625, 73984, 117760, 134400, 158976, 181440, 191488, 389376, 452709, 544000, 583680, 664848, 731136, 774400, 823543, 878592, 965888
Offset: 1
The terms together with their prime factors begin:
1: {}
4: {2,2}
27: {3,3,3}
400: {2,2,2,2,5,5}
3125: {5,5,5,5,5}
9072: {2,2,2,2,3,3,3,3,7}
10800: {2,2,2,2,3,3,3,5,5}
14580: {2,2,3,3,3,3,3,3,5}
24057: {3,3,3,3,3,3,3,11}
35721: {3,3,3,3,3,3,7,7}
50625: {3,3,3,3,5,5,5,5}
73984: {2,2,2,2,2,2,2,2,17,17}
For prime indices instead of factors we have
A359903.
A067340 lists numbers whose prime signature has integer mean.
A078175 = numbers whose prime factors have integer mean, indices
A316413.
A360005 gives median of prime indices (times two).
-
prifac[n_]:=If[n==1,{},Flatten[ConstantArray@@@FactorInteger[n]]];
prisig[n_]:=If[n==1,{},Last/@FactorInteger[n]];
Select[Range[1000],Mean[prifac[#]]==Mean[prisig[#]]&]
A360456
Number of integer partitions of n for which the parts have the same median as the multiplicities.
Original entry on oeis.org
1, 1, 0, 0, 1, 0, 0, 1, 2, 5, 7, 10, 14, 21, 28, 36, 51, 64, 84, 106, 132, 165, 202, 252, 311, 391, 473, 579, 713, 868, 1069, 1303, 1617, 1954, 2404, 2908, 3556, 4282, 5200, 6207, 7505, 8934, 10700, 12717, 15165, 17863, 21222, 24976, 29443, 34523, 40582, 47415
Offset: 0
The a(1) = 1 through a(11) = 10 partitions:
1 . . 22 . . 2221 3311 333 4222 5222
32111 3222 33211 33221
32211 42211 52211
42111 43111 53111
321111 52111 62111
421111 322211
3211111 431111
521111
4211111
32111111
These partitions have ranks
A360454.
A008284 counts partitions by number of parts.
-
Table[Length[Select[IntegerPartitions[n], Median[Length/@Split[#]]==Median[#]&]],{n,0,30}]
A360070
Numbers for which there exists an integer partition such that the parts have the same mean as the multiplicities.
Original entry on oeis.org
1, 4, 8, 9, 12, 16, 18, 20, 25, 27, 32, 36, 45, 48, 49, 50, 54, 63, 64, 72, 75, 80, 81, 90, 96, 98, 99, 100, 108, 112, 117, 121, 125, 128, 144, 147, 150, 160, 162, 169, 175, 176, 180, 192, 196, 200, 208, 216, 224, 225, 240, 242, 243, 245, 250, 252, 256, 272
Offset: 1
A partition of 20 with the same mean as its multiplicities is (5,4,3,2,1,1,1,1,1,1), so 20 is in the sequence.
A360680
Numbers for which the prime signature has the same mean as the first differences of 0-prepended prime indices.
Original entry on oeis.org
1, 2, 6, 30, 49, 152, 210, 513, 1444, 1776, 1952, 2310, 2375, 2664, 2760, 2960, 3249, 3864, 3996, 4140, 4144, 5796, 5994, 6072, 6210, 6440, 6512, 6517, 6900, 7176, 7400, 7696, 8694, 9025, 9108, 9384, 10064, 10120, 10350, 10488, 10764, 11248, 11960, 12167
Offset: 1
The terms together with their prime indices begin:
1: {}
2: {1}
6: {1,2}
30: {1,2,3}
49: {4,4}
152: {1,1,1,8}
210: {1,2,3,4}
513: {2,2,2,8}
1444: {1,1,8,8}
1776: {1,1,1,1,2,12}
1952: {1,1,1,1,1,18}
2310: {1,2,3,4,5}
2375: {3,3,3,8}
2664: {1,1,1,2,2,12}
2760: {1,1,1,2,3,9}
2960: {1,1,1,1,3,12}
For example, the prime indices of 2760 are {1,1,1,2,3,9}. The signature is (3,1,1,1), with mean 3/2. The first differences of 0-prepended prime indices are (1,0,0,1,1,6), with mean also 3/2. So 2760 is in the sequence.
For indices instead of 0-prepended differences:
A359903, counted by
A360068.
For median instead of mean we have
A360681.
A316413 = numbers whose prime indices have integer mean, complement
A348551.
A360614/
A360615 = mean of first differences of 0-prepended prime indices.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[1000],Mean[Length/@Split[prix[#]]] == Mean[Differences[Prepend[prix[#],0]]]&]
Comments