OFFSET
1,1
COMMENTS
EXAMPLE
The terms together with their prime indices begin:
2: {1}
9: {2,2}
24: {1,1,1,2}
54: {1,2,2,2}
72: {1,1,1,2,2}
80: {1,1,1,1,3}
108: {1,1,2,2,2}
125: {3,3,3}
216: {1,1,1,2,2,2}
224: {1,1,1,1,1,4}
400: {1,1,1,1,3,3}
704: {1,1,1,1,1,1,5}
960: {1,1,1,1,1,1,2,3}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Max@@Last/@FactorInteger[#]==Total[Union[prix[#]]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 24 2025
STATUS
approved
