A379317 Positive integers with a unique even prime index.
3, 6, 7, 12, 13, 14, 15, 19, 24, 26, 28, 29, 30, 33, 35, 37, 38, 43, 48, 51, 52, 53, 56, 58, 60, 61, 65, 66, 69, 70, 71, 74, 75, 76, 77, 79, 86, 89, 93, 95, 96, 101, 102, 104, 106, 107, 112, 113, 116, 119, 120, 122, 123, 130, 131, 132, 138, 139, 140, 141, 142
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 3: {2} 6: {1,2} 7: {4} 12: {1,1,2} 13: {6} 14: {1,4} 15: {2,3} 19: {8} 24: {1,1,1,2} 26: {1,6} 28: {1,1,4} 29: {10} 30: {1,2,3} 33: {2,5} 35: {3,4} 37: {12} 38: {1,8} 43: {14} 48: {1,1,1,1,2}
Crossrefs
Positions of 1 in A257992.
Other counts of prime indices:
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Length[Select[prix[#],EvenQ]]==1&]
Comments