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: (11), (111), (1111), (11111), (2211), (111111), (3311), (1111111), (221111), (4411), (222111), (3322), (11111111), (222211), (331111), (5511), (111111111), (22111111), (6611), (441111), (332211), (333111).
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