Looking for a solution for such a challenge, I have a decision problem that is solved if there is a positive integer $c$, which for given integer constants $a$, $b$ satisfies the equation
$a+c^2 \equiv 0 \pmod {2b-2c}$
or simply to say $a+c^2$ is divisible by $2b - 2c$.
Additional facts, maybe helpful
- $0<c<b$
- $a<2b$
Not sure how to approach this, beside brute force, looking for an elegant solution.