OFFSET
1,1
LINKS
Zhining Yang, Table of n, a(n) for n = 1..328
EXAMPLE
444 is in the sequence because 444^5 = x^2 + y^3 + z^4 where GCD (x, y, z) = 1 has exactly 5 positive integer solutions: {676786, 25603, 343}, {342332, 25775, 345}, {4123199, 5503, 544}, {2451712, 21919, 919}, {3889117, 679, 1208}.
MATHEMATICA
Do[w5=w^5; s={}; c=0;
Do[yy=w5-z^4; Do[xx=yy-y^3; x=Sqrt@xx;
If[IntegerQ@x, If[GCD[x, y, z]==1, c++; AppendTo[s, {x, y, z}]]], {y, Floor[yy^(1/3)]}], {z, Floor[w5^(1/4)]}];
If[c==5, Print[w, s]], {w, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhining Yang, Aug 13 2025
STATUS
approved
