OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Diophantine Equation--3rd Powers.
Jaroslaw Wroblewski, Exhaustive list of solutions to (3,1,3) below 1,000,000.
EXAMPLE
a(4) = 219 since 219^3 = x^3 + y^3 + z^3 has exactly 4 positive primitive integer solutions: {{50, 67, 216}, {51, 152, 190}, {67, 167, 177}, {108, 163, 170}}.
MATHEMATICA
a[n_]:=Module[{k=1}, While[Length@Select[PowersRepresentations[k^3, 3, 3], #[[1]]>0&&GCD@@#==1&]!=n, k++]; k]; Table[a[k], {k, 4}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Zhining Yang, Dec 19 2025
STATUS
approved
