I'm looking for four prime numbers $a < b < c < z$,
so that $\forall p, q, r, s \in N_{\geq 0}$:
$pa+qb+rc = sz \rightarrow$ "All of $p$, $q$ and $r$ are multiples of $z$"
- Do such prime numbers $a, b, c, z$ exist?
For example, $2, 5, 7, 11$ doesn't satisfy the requirements, because $0*2 + 3*5 + 1*7 = 2*11$ and $3$ is not a multiple of $11$ (and by the way neither is $1$ a multiple of $11$). Some other counterexamples for this particular instance are $2*2+0*3+1*7 = 1*11$ and $4*2+1*3+11*7=8*11$
- Do we have some examples of such combinations of prime numbers?
- Is there an "easy" way to find such combinations?
For my particular application, I don't know yet if I prefer small prime numbers or big ones, but at least it would be good if $z<2^{64}$.