A344415 Numbers whose greatest prime index is half their sum of prime indices.
4, 9, 12, 25, 30, 40, 49, 63, 70, 84, 112, 121, 154, 165, 169, 198, 220, 264, 273, 286, 289, 325, 351, 352, 361, 364, 390, 442, 468, 520, 529, 561, 595, 624, 646, 714, 741, 748, 765, 832, 841, 850, 874, 918, 931, 952, 961, 988, 1020, 1045, 1173, 1197, 1224
Offset: 1
Keywords
Examples
The sequence of terms together with their prime indices begins: 4: {1,1} 198: {1,2,2,5} 9: {2,2} 220: {1,1,3,5} 12: {1,1,2} 264: {1,1,1,2,5} 25: {3,3} 273: {2,4,6} 30: {1,2,3} 286: {1,5,6} 40: {1,1,1,3} 289: {7,7} 49: {4,4} 325: {3,3,6} 63: {2,2,4} 351: {2,2,2,6} 70: {1,3,4} 352: {1,1,1,1,1,5} 84: {1,1,2,4} 361: {8,8} 112: {1,1,1,1,4} 364: {1,1,4,6} 121: {5,5} 390: {1,2,3,6} 154: {1,4,5} 442: {1,6,7} 165: {2,3,5} 468: {1,1,2,2,6} 169: {6,6} 520: {1,1,1,3,6}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Max[primeMS[#]]==Total[primeMS[#]]/2&]
Comments