A363222 Numbers whose multiset of prime indices satisfies (maximum) - (minimum) = (length).
10, 21, 28, 42, 55, 70, 88, 91, 98, 99, 132, 165, 187, 198, 208, 220, 231, 247, 308, 312, 325, 330, 351, 363, 391, 455, 462, 468, 484, 520, 544, 550, 551, 585, 702, 713, 715, 726, 728, 770, 780, 816, 819, 833, 845, 975, 1073, 1078, 1092, 1144, 1170, 1210, 1216
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 10: {1,3} 21: {2,4} 28: {1,1,4} 42: {1,2,4} 55: {3,5} 70: {1,3,4} 88: {1,1,1,5} 91: {4,6} 98: {1,4,4} 99: {2,2,5} 132: {1,1,2,5} 165: {2,3,5} 187: {5,7} 198: {1,2,2,5}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Max@@prix[#]-Min@@prix[#]==Length[prix[#]]&]
Comments