OFFSET
1,1
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.
EXAMPLE
The sequence of terms together with their prime indices begins:
4: {1,1} 198: {1,2,2,5}
9: {2,2} 220: {1,1,3,5}
12: {1,1,2} 264: {1,1,1,2,5}
25: {3,3} 273: {2,4,6}
30: {1,2,3} 286: {1,5,6}
40: {1,1,1,3} 289: {7,7}
49: {4,4} 325: {3,3,6}
63: {2,2,4} 351: {2,2,2,6}
70: {1,3,4} 352: {1,1,1,1,1,5}
84: {1,1,2,4} 361: {8,8}
112: {1,1,1,1,4} 364: {1,1,4,6}
121: {5,5} 390: {1,2,3,6}
154: {1,4,5} 442: {1,6,7}
165: {2,3,5} 468: {1,1,2,2,6}
169: {6,6} 520: {1,1,1,3,6}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Max[primeMS[#]]==Total[primeMS[#]]/2&]
CROSSREFS
The partitions with these Heinz numbers are counted by A035363.
The conjugate version is A340387.
A001222 counts prime factors with multiplicity.
A301987 lists numbers whose sum of prime indices equals their product.
A334201 adds up all prime indices except the greatest.
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 19 2021
STATUS
approved