Using SageMath I can get the answer:
l=[]
for i in range(1,2000):
for j in range(i):
if gcd(j+1,i)==1:
l.append(j+1)
if len(l)==4:
print(i)
print(l)
l=[]
Get the result below:
5
[1, 2, 3, 4]
8
[1, 3, 5, 7]
10
[1, 3, 7, 9]
12
[1, 5, 7, 11]
But I can't say it's all the integers, so how should I prove it?