A336272 Length of longest side of a primitive square Heron triangle, i.e., a triangle with relatively prime integer sides and area the square of a positive integer.
Keywords
Examples
17 is in the sequence because the triangle with sides [17, 10, 9] has longest side 17 and area 6^2, the square of a positive integer; 26 is in the sequence because the triangle with sides [26, 25, 3] has longest side 26 and has area 6^2, the square of a positive integer. Triangles with sides [a, b, c] corresponding to the first 8 terms of this sequence are: [17, 10, 9], [26, 25, 3], [120, 113, 17], [370, 357, 41], [392, 353, 255], [567, 424, 305], [680, 441, 337], [697, 657, 104].
Links
- Hugo Pfoertner, Table of n, a(n) for n = 1..79
- Sascha Kurz, On the generation of Heronian triangles, arXiv:1401.6150 [math.NT], 11 Jan 2014.
- Sascha Kurz, On the generation of Heronian triangles, Serdica Journal of Computing Vol. 2 (2008), Pages 181-196.
- Hugo Pfoertner, List of triangle sides, 20000 > i > j > k.
Programs
-
Maple
# find all square Heron triangles whose longest side is between small and big small:=1: big:=700: A336272:=[]:triangles:=[]: areasq16:=(a+b+c)*(a+b-c)*(a-b+c)*(-a+b+c): # a>=b>=c for a from small to big do: for b from ceil((a+1)/2) to a do: for c from a-b+1 to b do: if issqr(areasq16) and issqr(sqrt(areasq16)) and igcd(a,b,c)=1 then A336272:=[op(A336272),a]: triangles:=[op(triangles),[a,b,c]]: end if: od: od: od: A336272;triangles;
-
PARI
for(a=1,1200,for(b=ceil((a+1)/2),a,for(c=a-b+1,b,if(gcd([a,b,c])==1,if(ispower((a+b+c)*(a+b-c)*(a-b+c)*(b+c-a),4),print1(a,", ")))))) \\ Hugo Pfoertner, Jul 18 2020
Comments