OFFSET
1,2
COMMENTS
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {}
2: {1}
4: {1,1}
8: {1,1,1}
12: {1,1,2}
16: {1,1,1,1}
24: {1,1,1,2}
32: {1,1,1,1,1}
36: {1,1,2,2}
40: {1,1,1,3}
48: {1,1,1,1,2}
64: {1,1,1,1,1,1}
72: {1,1,1,2,2}
80: {1,1,1,1,3}
96: {1,1,1,1,1,2}
108: {1,1,2,2,2}
112: {1,1,1,1,4}
120: {1,1,1,2,3}
128: {1,1,1,1,1,1,1}
144: {1,1,1,1,2,2}
MATHEMATICA
Select[Range[100], #==1||EvenQ[#]&&PrimePi[FactorInteger[#][[-1, 1]]]<=FactorInteger[#][[1, 2]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 18 2019
STATUS
approved