OFFSET
1,2
COMMENTS
EXAMPLE
The terms together with their prime indices begin:
1: {}
2: {1}
3: {2}
5: {3}
7: {4}
9: {2,2}
11: {5}
13: {6}
15: {2,3}
17: {7}
19: {8}
21: {2,4}
23: {9}
25: {3,3}
27: {2,2,2}
29: {10}
30: {1,2,3}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Total[prix[#]]<=Times@@prix[#]&]
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Gus Wiseman, Jan 05 2025
STATUS
approved