login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A121729
Shortest side (or short leg) of primitive Pythagorean triangle corresponding to hypotenuse A121727.
4
3, 5, 8, 7, 9, 20, 12, 11, 16, 13, 28, 15, 33, 20, 17, 48, 36, 39, 19, 24, 21, 65, 44, 60, 28, 23, 51, 25, 32, 52, 88, 27, 57, 85, 36, 29, 60, 119, 31, 84, 104, 95, 40, 69, 33, 68
OFFSET
1,1
COMMENTS
The complete triple (X,Y,Z), with X>Y>Z, is given by X=A121727(n),Y=A121728(n),Z=a(n).
LINKS
MAPLE
N:= 100000: # for triples with area <= N
R:= NULL:
for n from 1 while (2*n+1)*(n+1)*n <= N do
for m from n+1 by 2 while (m^2 - n^2)*m*n <= N do
if igcd(m, n) = 1 then
R:= R, [m^2-n^2, 2*m*n, m^2+n^2, (m^2-n^2)*m*n]
fi
od od:
R:= sort(R, (s, t) -> s[4] < t[4] or (s[4] = t[4] and s[3] < t[3])):
seq(min(t[1], t[2]), t=R); # Robert Israel, Dec 30 2024
CROSSREFS
Sequence in context: A304026 A110641 A379042 * A072105 A350693 A364847
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Aug 17 2006
EXTENSIONS
a(43)=40 inserted by Ray Chandler, Jun 26 2017
STATUS
approved