A360556
Numbers > 1 whose first differences of 0-prepended prime indices have integer median.
Original entry on oeis.org
2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 23, 26, 27, 28, 29, 30, 31, 32, 35, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 52, 53, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 86, 87, 89
Offset: 1
The 0-prepended prime indices of 1617 are {0,2,4,4,5}, with sorted differences {0,1,2,2}, with median 3/2, so 1617 is not in the sequence.
For mean instead of median we have
A340610.
Positions of even terms in
A360555.
The complement is
A360557 (without 1).
These partitions are counted by
A360688.
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[2,100],IntegerQ[Median[Differences[Prepend[prix[#],0]]]]&]
A360557
Numbers > 1 whose sorted first differences of 0-prepended prime indices have non-integer median.
Original entry on oeis.org
4, 10, 15, 22, 24, 25, 33, 34, 36, 40, 46, 51, 54, 55, 56, 62, 69, 77, 82, 85, 88, 93, 94, 100, 104, 115, 118, 119, 121, 123, 134, 135, 136, 141, 146, 152, 155, 161, 166, 177, 184, 187, 194, 196, 201, 205, 206, 217, 218, 219, 220, 221, 225, 232, 235, 240, 248
Offset: 1
The 0-prepended prime indices of 1617 are {0,2,4,4,5}, with sorted differences {0,1,2,2}, with median 3/2, so 1617 is in the sequence.
For mean instead of median complement we have
A340610, counted by
A168659.
These partitions are counted by
A360691.
A287352 lists 0-prepended first differences of prime indices.
A355536 lists first differences of prime indices.
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[2,100],!IntegerQ[Median[Differences[Prepend[prix[#],0]]]]&]
A360669
Nonprime numbers > 1 for which the prime indices have the same mean as their first differences.
Original entry on oeis.org
10, 39, 68, 115, 138, 259, 310, 328, 387, 517, 574, 636, 793, 795, 1034, 1168, 1206, 1241, 1281, 1340, 1534, 1691, 1825, 2212, 2278, 2328, 2343, 2369, 2370, 2727, 2774, 2905, 3081, 3277, 3818, 3924, 4064, 4074, 4247, 4268, 4360, 4539, 4850, 4905, 5243, 5335
Offset: 1
The terms together with their prime indices begin:
1: {}
10: {1,3}
39: {2,6}
68: {1,1,7}
115: {3,9}
138: {1,2,9}
259: {4,12}
310: {1,3,11}
328: {1,1,1,13}
387: {2,2,14}
517: {5,15}
574: {1,4,13}
636: {1,1,2,16}
For example, the prime indices of 138 are {1,2,9}, with mean 4, and with first differences (1,7), with mean also 4, so 138 is in the sequence.
These partitions are counted by
A360670.
A301987 lists numbers whose sum of prime indices equals their product.
A316413 lists numbers whose prime indices have integer mean.
A334201 adds up all prime indices except the greatest.
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[2,1000],Mean[prix[#]]==Mean[Differences[prix[#]]]&]
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]]]&]
Showing 1-4 of 4 results.
Comments