A233317 Integer areas A of the integer-sided triangles such that the inradius and the radius of the three excircles are perfect squares.
108, 1728, 8748, 12348, 27648, 67500, 139968, 197568, 259308, 442368, 707472, 708588, 1000188, 1080000, 1581228, 2239488, 3084588, 3161088, 4148928, 5467500, 7077888, 7717500, 9020268, 11319552, 11337408, 14074668, 16003008, 17280000, 21003948, 25299648
Offset: 1
Keywords
Links
Crossrefs
Cf. A185210.
Programs
-
Mathematica
nn = 1000; lst = {}; Do[s = (a + b + c)/2; If[IntegerQ[s], area2 = s (s - a) (s - b) (s - c); If[area2>0&& IntegerQ[Sqrt[area2]] && IntegerQ[Sqrt[Sqrt[area2]/s]] && IntegerQ[Sqrt[2*Sqrt[area2]/(-a+b+c)]] && IntegerQ[Sqrt[2*Sqrt[area2]/(a-b+c)]] && IntegerQ[Sqrt[2*Sqrt[area2]/(a+b-c)]], AppendTo[lst, Sqrt[area2]]]], {a, nn}, {b, a}, {c, b}]; Union[lst]
Comments