OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n.
EXAMPLE
The sequence of integer partitions whose Heinz numbers are in the sequence begins: (2), (3), (4), (5), (6), (7), (8), (4,2), (9), (10), (11), (12), (6,2), (13), (14), (15), (16), (8,2), (17), (18), (4,2,2), (6,3).
MATHEMATICA
Select[Range[1000], And[GCD@@PrimePi/@FactorInteger[#][[All, 1]]>1, GCD@@FactorInteger[#][[All, 2]]==1]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 12 2018
STATUS
approved