A363954 Numbers whose prime indices have low mean 2.
3, 9, 10, 14, 15, 27, 28, 30, 42, 44, 45, 50, 52, 63, 66, 70, 75, 81, 84, 88, 90, 100, 104, 126, 132, 135, 136, 140, 150, 152, 156, 189, 196, 198, 204, 208, 210, 220, 225, 234, 243, 250, 252, 260, 264, 270, 272, 280, 294, 297, 300, 304, 308, 312, 315, 330, 350
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 3: {2} 9: {2,2} 10: {1,3} 14: {1,4} 15: {2,3} 27: {2,2,2} 28: {1,1,4} 30: {1,2,3} 42: {1,2,4} 44: {1,1,5} 45: {2,2,3} 50: {1,3,3} 52: {1,1,6} 63: {2,2,4} 66: {1,2,5} 70: {1,3,4} 75: {2,3,3} 81: {2,2,2,2} 84: {1,1,2,4} 88: {1,1,1,5} 90: {1,2,2,3} 100: {1,1,3,3}
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Floor[Mean[prix[#]]]==2&]
Comments