A359890 Numbers whose prime indices do not have the same mean as median.
12, 18, 20, 24, 28, 40, 42, 44, 45, 48, 50, 52, 54, 56, 60, 63, 66, 68, 70, 72, 75, 76, 78, 80, 84, 88, 92, 96, 98, 99, 102, 104, 108, 112, 114, 116, 117, 120, 124, 126, 130, 132, 135, 136, 138, 140, 144, 147, 148, 150, 152, 153, 154, 156, 160, 162, 164, 165
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 12: {1,1,2} 18: {1,2,2} 20: {1,1,3} 24: {1,1,1,2} 28: {1,1,4} 40: {1,1,1,3} 42: {1,2,4} 44: {1,1,5} 45: {2,2,3} 48: {1,1,1,1,2} For example, the prime indices of 360 are {1,1,1,2,2,3}, with mean 5/3 and median 3/2, so 360 is in the sequence.
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[1000],Mean[prix[#]]!=Median[prix[#]]&]
Comments