OFFSET
1,1
COMMENTS
A permutation of A099533 sorted by increasing y. 1<=x<=y, GCD(x,y)=1.
LINKS
R. J. Mathar, Table of n, a(n) for n = 1..325
EXAMPLE
(x,y,z) = (11,37,228), (56,65,671), (57,112,1261), (217,312,6371), (242,433,9765), (851,877,35928), (305,1064,35113), (23,1177,40380), (122,1201,41643), (592,1617,66599), (1706,1969,112245), (1376,2345,124501), (1001,2480,127499), (2257,2543,167160), (1960,3081,191771)... - R. J. Mathar, Jan 22 2025
MAPLE
A282639 := proc(n)
option remember ;
local x, y ;
if n =1 then
2
else
for y from procname(n-1)+1 do
for x from 1 to y do
if igcd(x, y) = 1 then
if issqr(x^3+y^3) then
return y;
end if;
end if;
end do:
end do:
end if;
end proc:
seq(A282639(n), n=1..17) ; # R. J. Mathar, Jan 22 2025
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
R. J. Mathar, Feb 20 2017
STATUS
approved