A352143 Numbers whose prime indices and conjugate prime indices are all odd.
1, 2, 5, 8, 11, 17, 20, 23, 31, 32, 41, 44, 47, 59, 67, 68, 73, 80, 83, 92, 97, 103, 109, 124, 125, 127, 128, 137, 149, 157, 164, 167, 176, 179, 188, 191, 197, 211, 227, 233, 236, 241, 257, 268, 269, 272, 275, 277, 283, 292, 307, 313, 320, 331, 332, 347, 353
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 5: {3} 8: {1,1,1} 11: {5} 17: {7} 20: {1,1,3} 23: {9} 31: {11} 32: {1,1,1,1,1} 41: {13} 44: {1,1,5} 47: {15} 59: {17} 67: {19} 68: {1,1,7} 73: {21} 80: {1,1,1,1,3}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; conj[y_]:=If[Length[y]==0,y,Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]]; Select[Range[100],And@@OddQ/@primeMS[#]&&And@@OddQ/@conj[primeMS[#]]&]
Comments