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.
Also numbers that cannot be written as a product of prime powers > 1 with distinct sums of prime indices (A056239).
Contains no squarefree numbers.
Conjecture: These are the zeros of A382876.
LINKS
Robert Price, Table of n, a(n) for n = 1..1331
EXAMPLE
The prime indices of 300 are {1,1,2,3,3}, with partitions into constant blocks:
{{2},{1,1},{3,3}}
{{1},{1},{2},{3,3}}
{{2},{3},{3},{1,1}}
{{1},{1},{2},{3},{3}}
but none of these has distinct block-sums, so 300 is in the sequence.
The terms together with their prime indices begin:
12: {1,1,2}
60: {1,1,2,3}
63: {2,2,4}
84: {1,1,2,4}
120: {1,1,1,2,3}
126: {1,2,2,4}
132: {1,1,2,5}
156: {1,1,2,6}
204: {1,1,2,7}
228: {1,1,2,8}
252: {1,1,2,2,4}
276: {1,1,2,9}
300: {1,1,2,3,3}
MATHEMATICA
hwt[n_]:=Total[Cases[FactorInteger[n], {p_, k_}:>PrimePi[p]*k]];
pfacs[n_]:=If[n<=1, {{}}, Join@@Table[(Prepend[#, d]&)/@Select[pfacs[n/d], Min@@#>=d&], {d, Select[Rest[Divisors[n]], PrimePowerQ]}]];
Select[Range[100], Select[pfacs[#], UnsameQ@@hwt/@#&]=={}&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 10 2025
STATUS
approved
