You may want to try some program like this in future for testing.
However, I cannot say anything myself about how the program handles precision, etc, with taking $4$th powers and roots of large numbers, but at least you can be sure it's possible if the program returns with a positive (as you can verify it yourself).
https://js.do/
<script>
var a = 406014677132263504491682;
var b = Math.pow(a / 2.0, 0.25);
var c = -1;
for (var i = 1; i <= b; i++) {
if (Math.pow(a - Math.pow(i, 4), 0.25) % 1 == 0) {c=i; break;}
}
document.write(c);
</script>
Some quick testing with random examples such as $32$ and $280286069726155265499093303843106=12371235^4+129387197^4$ seem to work, though.
a=406014677132263504491682;for(i=0,a^(1/4),ispower(a-i^4,4)&&return(i))proves by brute force that no solution exists. – Jeppe Stig Nielsen Jul 18 '17 at 22:11FindInstance[(280286069726155265499093303843106==x^2+y^2)~And~(x==z^2)~And~(y==w^2),{x,y,z,w},Integers]into the wolfram cloud sandbox and use Shift+Enter or numpad Enter or clicking on "Evaluate Cell" to run it. – Mark S. Aug 18 '17 at 12:02