OFFSET
1,1
COMMENTS
The Heinz number of an integer partition (y_1, ..., y_k) is prime(y_1) * ... * prime(y_k).
Is this the same as A305078 without the leading 2? - R. J. Mathar, Sep 08 2018
EXAMPLE
The sequence of all integer partitions with a common divisor begins: (2), (3), (4), (2,2), (5), (6), (7), (8), (4,2), (9), (3,3), (2,2,2), (10), (11), (12), (6,2), (13), (14), (15), (4,4), (16), (8,2), (17), (18), (4,2,2), (6,3), (19), (20), (21), (22), (2,2,2,2), (23), (10,2), (24), (6,4), (25).
MATHEMATICA
Select[Range[100], GCD@@PrimePi/@If[#==1, {}, FactorInteger[#]][[All, 1]]>1&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 06 2018
STATUS
approved