OFFSET
1,7
LINKS
Zhining Yang, Table of n, a(n) for n = 1..4500 (terms 1..856 from David A. Corneth)
David A. Corneth, Tuples (x, y, z, w) that are solutions to the equation.
David A. Corneth, PARI program
EXAMPLE
a(9) = 5 because x^2 + y^3 + z^4 = 9^5 where GCD(x,y,z)=1 has 5 positive integer solutions :{220,22,1},{64,38,3},{241,7,5},{9,38,8},{118,29,12}.
MATHEMATICA
f[w_]:=(c=0; zz=w^5; Do[yy=zz-z^4; Do[xx=yy-y^3; x=Sqrt@xx;
If[IntegerQ@x, If[GCD[x, y, z]==1, c++]], {y, Floor[yy^(1/3)]}], {z, Floor[zz^(1/4)]}]; c); Array[f@#&, 30]
CROSSREFS
KEYWORD
nonn
AUTHOR
David A. Corneth and Zhining Yang, Jul 20 2025
STATUS
approved
