We are tasked with finding all ordered triples of primes (p,q,r) such that
p∣qr+1,q∣rp+1,r∣pq+1.
Assume p=min(p,q,r) and p=2. Note the following conditions:
ordp(q)ordq(r)ordr(p)∣2r⟹ordp(q)=2 or 2r,∣2p⟹ordq(r)=2 or 2p,∣2q⟹ordr(p)=2 or 2q.
Given that ordp(q)∣ϕ(p)=p−1 and ordp(q)<r<2r, we deduce ordp(q)=2, implying p∣q+1.
Similarly, ordq(r)∣gcd(ϕ(q)=q−1,2p)=2, so ordq(r)=2, implying q∣r+1.
Repeating this process, we get r∣p+1. This results in a contradiction unless p=2.
Now, with p=2, we have:
q∣r2+1andr∣2q+1.
Assume ordr(2)=2q, which implies 2q∣r−1. Thus, r=2qk+1. Plugging this into q∣r2+1, we find q∣2, leading to a contradiction. Therefore, ordr(2)=2, implying r=3.
Thus, q=5 or q=3. Since all primes must be distinct, we conclude q=5.
Therefore, the ordered triples of primes (p,q,r) satisfying the given conditions are:
(p,q,r)=(2,3,5),(2,5,3),(3,2,5),(3,5,2),(5,2,3),(5,3,2).
The answer is: \boxed{(2, 3, 5), (2, 5, 3), (3, 2, 5), (3, 5, 2), (5, 2, 3), (5, 3, 2)}.