OFFSET
1,1
COMMENTS
EXAMPLE
The terms together with their prime indices begin:
10: {1,3}
14: {1,4}
22: {1,5}
26: {1,6}
28: {1,1,4}
33: {2,5}
34: {1,7}
38: {1,8}
39: {2,6}
44: {1,1,5}
46: {1,9}
51: {2,7}
52: {1,1,6}
55: {3,5}
57: {2,8}
58: {1,10}
62: {1,11}
66: {1,2,5}
MATHEMATICA
nrmptn[n_]:=Join@@MapIndexed[Table[#2[[1]], {#1}]&, If[n==1, {}, Flatten[Cases[FactorInteger[n]//Reverse, {p_, k_}:>Table[PrimePi[p], {k}]]]]];
Select[Range[100], Select[Permutations[nrmptn[#]], SameQ@@Length/@Split[#]&]=={}&]
CROSSREFS
A003963 gives product of prime indices.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 09 2025
STATUS
approved
