OFFSET
1,2
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
All terms are odd.
EXAMPLE
The first position of 12 in A290106 is 675, with prime indices {2,2,2,3,3}, so a(12) = 675.
The terms together with their prime indices begin:
1: {}
9: {2,2}
25: {3,3}
27: {2,2,2}
121: {5,5}
169: {6,6}
289: {7,7}
81: {2,2,2,2}
125: {3,3,3}
841: {10,10}
961: {11,11}
675: {2,2,2,3,3}
1681: {13,13}
1849: {14,14}
2209: {15,15}
243: {2,2,2,2,2}
3481: {17,17}
1125: {2,2,3,3,3}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
mnrm[s_]:=If[Min@@s==1, mnrm[DeleteCases[s-1, 0]]+1, 0];
q=Table[Times@@prix[n]/Times@@Union[prix[n]], {n, 10000}];
Table[Position[q, k][[1, 1]], {k, mnrm[q]}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 14 2025
STATUS
approved
