OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n. An integer partition is uniform if all parts appear with the same multiplicity. The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
The number of uniform partitions of n with relatively prime parts is A078374(n).
LINKS
A. David Christopher and M. Davamani Christober, Relatively Prime Uniform Partitions, Gen. Math. Notes, Vol. 13, No. 2, December, 2012, pp.1-12.
EXAMPLE
Sequence of all uniform relatively prime integer partitions begins (1), (11), (21), (111), (31), (41), (32), (1111), (51), (61), (321), (11111), (52), (71), (43), (2211).
MATHEMATICA
Select[Range[200], And[GCD@@PrimePi/@FactorInteger[#][[All, 1]]===1, SameQ@@FactorInteger[#][[All, 2]]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 16 2018
STATUS
approved