A285579 Circumdiameters of non-Pythagorean primitive Heronian triangles (no repetitions).
25, 65, 85, 125, 145, 169, 185, 205, 221, 265, 289, 305, 325, 365, 377, 425, 445, 481, 485, 493, 505, 533, 545, 565, 625, 629, 685, 689, 697, 725, 745, 785, 793, 841, 845, 865, 901, 905, 925, 949, 965, 985, 1025, 1037, 1105, 1145, 1157, 1165, 1189, 1205, 1241, 1261, 1285, 1313
Offset: 1
Keywords
Examples
a(1) = 25 as the Heronian triangle with sides (20, 15, 7) is primitive, is non-Pythagorean, has an area of 42 and has a circumdiameter of 25. It is the first occurrence of an integral circumdiameter for a non-Pythagorean PHT.
Links
- Ray Chandler, Table of n, a(n) for n = 1..10000
- Sascha Kurz, On the generation of Heronian triangles, Serdica Journal of Computing. 2 (2) (2008): pp. 181-196.
- Sascha Kurz, Lists of primitive Heronian triples, Bayreuth University.
Programs
-
Mathematica
lst1=ReadList["C:/primitive_heronian_triangles_1_10000.txt", {Number, Number, Number}]; lst = {}; Do[{a, b, c} = lst1[[n]]; s = (a + b + c)/2; A=Sqrt[s(s-a)(s-b)(s-c)]; If[IntegerQ[d=a*b*c/(2 A)]&&a!=d, AppendTo[lst, d]], {n, 1, Length[lst1]}];Union@lst (* For download of file of primitive Heronian triples see Link *)
Comments