A379307 Positive integers whose prime indices include no squarefree numbers.
1, 7, 19, 23, 37, 49, 53, 61, 71, 89, 97, 103, 107, 131, 133, 151, 161, 173, 193, 197, 223, 227, 229, 239, 251, 259, 263, 281, 307, 311, 337, 343, 359, 361, 371, 379, 383, 409, 419, 427, 433, 437, 457, 463, 479, 497, 503, 521, 523, 529, 541, 569, 593, 613, 623
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 7: {4} 19: {8} 23: {9} 37: {12} 49: {4,4} 53: {16} 61: {18} 71: {20} 89: {24} 97: {25} 103: {27} 107: {28} 131: {32} 133: {4,8} 151: {36} 161: {4,9} 173: {40}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[1000],Length[Select[prix[#],SquareFreeQ]]==0&]
Comments