login
A393614
Numbers of the form a*b*c*r/60 where (a,b,c) is a primitive Pythagorean triple with inradius r.
2
1, 26, 102, 210, 984, 1218, 1295, 3355, 7644, 9282, 11130, 22148, 24024, 29997, 47328, 48180, 54978, 69420, 91234, 92853, 151320, 170170, 193050, 208299, 233051, 294998, 372351, 488280, 524280, 544258, 590744, 742368, 777231, 880770, 1070745, 1196482, 1315834, 1407770, 1766232, 1771077, 1789320
OFFSET
1,2
COMMENTS
Numbers of the form (x - y)^2*(x + y)*x*y^2*(x^2 + y^2)/30 where 1 <= y < x, x and y coprime and one of them even.
LINKS
FORMULA
a(n) = A393526(n)/60.
EXAMPLE
a(3) = 102 is a term because (with x=4, y=1), the primitive Pythagorean triple (15, 8, 17) has inradius 3 and 15 * 8 * 17 * 3 / 60 = 102.
MAPLE
N:= 10^7: # for terms <= N
Res:= {}: count:= 0:
for x from 2 while x^6 - x^5 - x^2 + x <= 30*N do
flag:= false;
for y from 1 to x-1 do
P:= (x - y)^2*(x + y)*x*y^2*(x^2 + y^2)/30;
if P > N then flag:= true; y1:= y; break fi;
if igcd(x, y) = 1 and (x+y)::odd then
count:= count+1; Res:= Res union {P};
fi
od;
if flag then
for y from x-1 to y1+1 by -1 do
P:= (x - y)^2*(x + y)*x*y^2*(x^2 + y^2)/30;
if P > N then break fi;
if igcd(x, y) = 1 and (x+y)::odd then
count:= count+1; Res:= Res union {P};
fi od fi
od:
sort(convert(Res, list));
CROSSREFS
KEYWORD
nonn
AUTHOR
Will Gosnell and Robert Israel, Feb 23 2026
STATUS
approved