login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A231740 Integer areas of the intangents triangle of integer-sided triangles. 0
672, 2688, 6048, 10752, 15435, 16800, 19250, 24192, 32928, 37730, 43008, 54432, 56133, 61740, 67200, 77000, 81312, 96768, 113568, 131712, 138915, 150920, 151200, 172032, 173250, 194208, 217728, 221130, 224532, 242592, 246960, 268800, 296352, 308000, 325248, 339570 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Given triangle ABC, there are four lines simultaneously tangent to the incircle (with center I) and the excircle (with center J). Of these, three correspond to the sidelines of the triangle, and the fourth is known as the intangent (Kimberling 1998, p. 161), illustrated in the first link. The intangents intersect one another pairwise, and their points of intersection form the so-called intangents triangle A'B'C' illustrated in the second link.
The area of the intangents triangle is given by
S' = S*(a+b-c)^2*(a-b+c)^2*(-a+b+c)^2 /((-a^2+b^2+c^2)*(a^2+b^2-c^2)*(a^2-b^2+c^2)) where (a, b, c) are the sides of the initial triangle of ABC and S is the area of ABC.
Properties of this sequence:
The primitive triangles are 672, 15435, 19250, ...
The nonprimitive triangles of areas 4*a(n), 9*a(n), ..., p^2*a(n), ... are in the sequence.
The areas of the non-isosceles triangles are 15435, 19250, 37730, 56133, ...
The following table gives the first values (S', S, a, b, c, a', b', c') where S' is the area of the intangents triangle, S is the area of the triangles ABC, a, b, c the integer sides of the triangles ABC and a', b', c' are the integer sides of the intangents triangle.
---------------------------------------
| S' | S | a | b | c |
---------------------------------------
| 672 | 588 | 35 | 35 | 42 |
| 2688 | 2352 | 70 | 70 | 84 |
| 6048 | 5292 | 105 | 105 | 126 |
| 10752 | 9408 | 140 | 140 | 168 |
| 15435 | 12600 | 130 | 200 | 210 |
| 16800 | 14700 | 175 | 175 | 210 |
| 19250 | 9240 | 102 | 182 | 200 |
| 24192 | 21168 | 210 | 210 | 252 |
| 32928 | 28812 | 245 | 245 | 294 |
| 37730 | 36960 | 272 | 300 | 308 |
| 43008 | 37632 | 280 | 280 | 336 |
| 54432 | 47628 | 315 | 315 | 378 |
| 56133 | 44352 | 220 | 416 | 420 |
REFERENCES
Clark Kimberling, Triangle centers and central triangles, Congressus Numerantium, 129 (1998)1-285.
LINKS
Clark Kimberling, Central points and central lines in the plane of a triangle, Math. Magazine, 67(1994) 163-187.
Eric Weisstein's World of Mathematics, Intangents Triangle.
Eric Weisstein's World of Mathematics, Intangents Circle.
Eric Weisstein's World of Mathematics, Intangent.
EXAMPLE
19250 is in the sequence from the initial triangle (102, 182, 200); we use the formula S' = S*(a+b-c)^2*(a-b+c)^2*(-a+b+c)^2 /((-a^2+b^2+c^2)*(a^2+b^2-c^2)*(a^2-b^2+c^2)) = 9240*(102+182-200)^2*(102-182+200)^2*(-102+182+200)^2 /((-102^2+182^2+200^2)*(102^2+182^2-200^2)*(102^2-182^2+200^2)) = 19250 where the area S = 9240 is obtained by Heron's formula S = sqrt(s*(s-a)*(s-b)*(s-c)) = sqrt(242*(242-102)*(242-182)*(242-200)) = 9240 with the semiperimeter s = (a+b+c)/2 = (102+182+200)/2 = 242.
MATHEMATICA
nn = 1000; lst = {}; Do[s = (a + b + c)/2; n = (a + b - c)^2 *(a -b + c)^2 *(-a + b + c)^2; d =(-a^2 + b^2 + c^2) *(a^2 + b^2 - c^2) *(a^2 - b^2 + c^2); If[IntegerQ[s], area2 = s (s - a) (s - b) (s - c); If[area2>0 && d>0 &&IntegerQ[Sqrt[area2] * n/d], AppendTo[lst, Sqrt[area2] * n/d]]], {a, nn}, {b, a}, {c, b}]; Union[lst]
CROSSREFS
Cf. A188158.
Sequence in context: A057796 A057797 A057802 * A245778 A245786 A321116
KEYWORD
nonn
AUTHOR
Michel Lagneau, Nov 13 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 8 02:29 EDT 2024. Contains 372317 sequences. (Running on oeis4.)