A359892 Members of A026424 (numbers with an odd number of prime factors) whose prime indices do not have the same mean as median.
12, 18, 20, 28, 42, 44, 45, 48, 50, 52, 63, 66, 68, 70, 72, 75, 76, 78, 80, 92, 98, 99, 102, 108, 112, 114, 116, 117, 120, 124, 130, 138, 147, 148, 153, 154, 162, 164, 165, 168, 170, 171, 172, 174, 175, 176, 180, 182, 186, 188, 190, 192, 195, 200, 207, 208
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 12: {1,1,2} 18: {1,2,2} 20: {1,1,3} 28: {1,1,4} 42: {1,2,4} 44: {1,1,5} 45: {2,2,3} 48: {1,1,1,1,2} 50: {1,3,3} 52: {1,1,6} 63: {2,2,4} 66: {1,2,5} 68: {1,1,7} 70: {1,3,4} 72: {1,1,1,2,2} For example, the prime indices of 180 are {1,1,2,2,3}, with mean 9/5 and median 2, so 180 is in the sequence.
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],OddQ[PrimeOmega[#]]&&Mean[prix[#]]!=Median[prix[#]]&]
Comments