| Summary: all even numbers >= 10, and all odd numbers >= 15 except 17.
Three numbers which are relatively prime in pairs (RPIP) are either one even and
two odd (in which case the sum is even) or three odd (in which case the sum is
odd).
So three such numbers with an even sum must sum to at least 2 + 3 + 5 >= 10.
Now the sums 2 + n + (n+2) and 4 + n + (n+2) are, for n odd and >=3, sums of
RPIP numbers which cover all even numbers >= 10. This demonstrates the claim
about even numbers.
Lemma. If n is odd and p is an odd prime such that (n+4)/3 < p <= n-8, then if
n-p = 2k, n = p + (k-e) + (k+e) is a sum of RPIP numbers greater than 1 if e = 1
or 2 and e is chosen so k+e and k-e are odd.
Proof. p <= n-8 insures that k >= 4, so k-e >= 3 and k+e >= 5. (n+4)/3 < p
implies n-p >= (2n-4)/3, so k <= (n-2)/3, so k+e <= (n+4)/3, so k+e < p.
This guarantees that k-e and k+e are relatively prime to p, and they are
relatively prime to each other because they are odd and their difference is
either 2 or 4.
Now: let n be odd. If n > 32, there exists a prime p such that (n+4)/3 < p <
2(n+4)/3, such a prime p will be odd, and will be <= n-8.
If 21 <= n <= 31, p = 13 satisfies (n+4)/3 < p <= n-8.
Finally, 19 = 11 + 3 + 5, 15 = 3 + 5 + 7.
The only set of distinct odd integers > 1 which sum to 17 is {3,5,9}, which
doesn't work. Three distinct odd integers > 1 must sum to at least 3+5+7 = 15,
so no other cases need be considered.
|