A361868 Positive integers > 1 whose prime indices satisfy (maximum) >= 2*(median).
12, 20, 24, 28, 40, 42, 44, 48, 52, 56, 60, 63, 66, 68, 72, 76, 78, 80, 84, 88, 92, 96, 99, 102, 104, 112, 114, 116, 117, 120, 124, 126, 130, 132, 136, 138, 140, 144, 148, 152, 153, 156, 160, 164, 168, 170, 171, 172, 174, 176, 184, 186, 188, 189, 190, 192, 195
Offset: 1
Keywords
Examples
The prime indices of 84 are {1,1,2,4}, with maximum 4 and median 3/2, and 4 >= 2*(3/2), so 84 is in the sequence. 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} 42: {1,2,4} 44: {1,1,5} 48: {1,1,1,1,2} 52: {1,1,6} 56: {1,1,1,4} 60: {1,1,2,3} 63: {2,2,4} 66: {1,2,5} 68: {1,1,7} 72: {1,1,1,2,2}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Max@@prix[#]>=2*Median[prix[#]]&]
Comments