A370778 Number of non-congruent integer triangles ABC with largest side BC of length n whose opposite vertex A lies inside or on the closed boundary formed by BC and a locus of points A' such that the triangle A'BC has tan A'/2 + tan B/2 + tan C/2 = 2.
0, 0, 0, 0, 2, 2, 3, 4, 6, 7, 8, 9, 13, 15, 17, 19, 23, 26, 28, 31, 36, 39, 42, 46, 51, 55, 58, 63, 70, 74, 79, 83, 92, 97, 102, 107, 116, 121, 127, 133, 143, 149, 156, 163, 174, 181, 187, 195, 205, 213, 220, 229, 240, 248, 257, 269, 279, 289, 298, 306, 320, 330, 340, 350, 366, 375, 385, 396, 412, 424, 435, 448, 462, 474, 487
Offset: 1
Keywords
Examples
a(8)=4 as there are 3 non-congruent integer triangles with base length of 8 whose apex lies inside the boundary and one non-congruent integer triangle that lies on the boundary. The integer triples are (4, 5, 8), (5, 5, 8), (3, 6, 8), (2, 7, 8) with (5, 5, 8) lying on the boundary. There are 16 other triangles from the complete set of non-congruent integer triangles with largest side length 8 (A002620(8+1)) = 20 that are outside the boundary.
Links
- Muwaffaq Hajja and Peter Yff, The isoperimetric point and the point(s) of equal detour in a triangle, J. geom. 87, 76-82 (2007).
- Frank M. Jackson, Soddyian triangles, Forum Geom., 13 (2013), 1-6.
- Frank M. Jackson and Stalislav Takhaev, Heronian Triangles of Class K: Congruent Incircles Cevian Perspective, Forum Geom., 15 (2015) 5-12.
- Wikipedia, Soddy circles of a triangle.
Programs
-
Mathematica
striangles[c_] := Module[{lst={}, a, b, s, A, ta, tb, tc}, Do[If[a+b>c, (s=(a+b+c)/2; A=Sqrt[s(s-a)(s-b)(s-c)]; ta=A/(s(s-a)); tb=A/(s(s-b)); tc=A/(s(s-c)); If[ta+tb+tc>=2, AppendTo[lst, {a, b, c}]])], {b, 1, c}, {a, 1, b}]; lst]; Table[Length@striangles[n], {n, 1, 100}]
Comments