A343063 Primitive triples (a, b, c) for integer-sided triangles whose angle B = 2*C.
5, 6, 4, 7, 12, 9, 9, 20, 16, 11, 30, 25, 13, 42, 36, 15, 56, 49, 16, 15, 9, 17, 72, 64, 19, 90, 81, 21, 110, 100, 23, 132, 121, 24, 35, 25, 25, 156, 144, 27, 182, 169, 29, 210, 196, 31, 240, 225, 32, 63, 49, 33, 28, 16, 33, 272, 256, 35, 306, 289, 37, 342, 324, 39, 40, 25, 39, 380, 361, 40, 99, 81, 41, 420, 400, 43, 462, 441
Offset: 1
Examples
The smallest such triangle is (5, 6, 4), of type c < a < b with 4*(5+4) = 6^2. The 2nd triple is (7, 12, 9) of type a < c < b with 9*(7+9) = 16^2. The 7th triple (16, 15, 9) is the first of type c < b < a with 9*(16+9) = 15^2. The table begins: 5, 6, 4; 7, 12, 9; 9, 20, 16; 11, 30, 25, 13, 42, 36; 15, 56, 49; 16, 15, 9; 17, 72, 64; ...
References
- V. Lespinard & R. Pernet, Trigonométrie, Classe de Mathématiques élémentaires, programme 1962, problème B-336 p. 178, André Desvigne.
Links
Crossrefs
Programs
-
Maple
for a from 2 to 60 do for c from 3 to floor(a^2/2) do d := c*(a+c); if igcd(a,sqrt(d),c)=1 and issqr(d) and abs(a-c)
Comments