OFFSET
1,2
COMMENTS
Conjecture: a(27)=121 is the largest integer whose cube cannot be described as the sum of four distinct positive cubes.
EXAMPLE
13 is not a term because 13^3 = 5^3 + 7^3 + 9^3 + 10^3 = 1^3 + 5^3 + 7^3 + 12^3.
MAPLE
filter:= proc(n) local t0, t1, t2, t3, q, x, y, z, w;
t0:= n^3;
for x from ceil((t0/4)^(1/3)) do
t1:= t0 - x^3;
if t1 < 36 then break fi;
for y from ceil((t1/3)^(1/3)) do
t2:= t1 - y^3;
if t2 < 9 or y >= x then break fi;
for z from ceil((t2/2)^(1/3)) do
t3:= t2 - z^3;
if t3 < 1 or z >= y then break fi;
w:= iroot(t3, 3, 'q');
if q and w < z then return false fi;
od od od;
true
end proc:
select(filter, [$1..1000]); # Robert Israel, Dec 02 2025
MATHEMATICA
a=Select[Range@125, Length@Select[PowersRepresentations[#^3, 4, 3], 0<#[[1]]<#[[2]]<#[[3]]<#[[4]]&]==0&]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Zhining Yang, May 20 2025
STATUS
approved
