OFFSET
1,1
COMMENTS
The Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
EXAMPLE
The sequence of terms together with their prime indices begins:
210: {1,2,3,4}
420: {1,1,2,3,4}
462: {1,2,4,5}
630: {1,2,2,3,4}
840: {1,1,1,2,3,4}
858: {1,2,5,6}
910: {1,3,4,6}
924: {1,1,2,4,5}
1050: {1,2,3,3,4}
1155: {2,3,4,5}
1260: {1,1,2,2,3,4}
1326: {1,2,6,7}
1386: {1,2,2,4,5}
1470: {1,2,3,4,4}
1680: {1,1,1,1,2,3,4}
1716: {1,1,2,5,6}
1820: {1,1,3,4,6}
1848: {1,1,1,2,4,5}
1870: {1,3,5,7}
1890: {1,2,2,2,3,4}
MATHEMATICA
Select[Range[1000], !UnsameQ@@Plus@@@Subsets[PrimePi/@First/@FactorInteger[#], {2}]&]
CROSSREFS
The subset case is A196723.
The maximal case is A325878.
The integer partition case is A325857.
The strict integer partition case is A325877.
Heinz numbers of the counterexamples are given by A325991.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 02 2019
STATUS
approved