A360681 Numbers for which the prime signature has the same median as the first differences of 0-prepended prime indices.
1, 2, 6, 30, 42, 49, 60, 66, 70, 78, 84, 90, 102, 105, 114, 120, 126, 132, 138, 140, 150, 154, 156, 168, 174, 186, 198, 204, 210, 222, 228, 234, 246, 258, 264, 270, 276, 280, 282, 286, 294, 306, 308, 312, 315, 318, 330, 342, 348, 350, 354, 366, 372, 378, 385
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 6: {1,2} 30: {1,2,3} 42: {1,2,4} 49: {4,4} 60: {1,1,2,3} 66: {1,2,5} 70: {1,3,4} 78: {1,2,6} 84: {1,1,2,4} 90: {1,2,2,3} For example, the prime indices of 2760 are {1,1,1,2,3,9}. The signature is (3,1,1,1), with median 1. The first differences of 0-prepended prime indices are (1,0,0,1,1,6), with median 1/2. So 2760 is not in the sequence.
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Median[Length/@Split[prix[#]]] == Median[Differences[Prepend[prix[#],0]]]&]
Comments