A343067 Perimeter of integer-sided primitive triangles (a, b, c) whose angle B = 2*C.
15, 28, 45, 66, 91, 120, 40, 153, 190, 231, 276, 84, 325, 378, 435, 496, 144, 77, 561, 630, 703, 104, 780, 220, 861, 946, 1035, 1128, 312, 1225, 170, 1326, 1431, 1540, 126, 420, 209, 1653, 1770, 1891, 2016, 544, 2145, 2278, 299, 2415, 2556, 198, 684, 2701, 350, 2850, 3003, 3160
Offset: 1
Keywords
Examples
According to inequalities between a, b, c, there exist 3 types of such triangles: a(1) = 15 with c < a < b for the first triple (5, 6, 4); a(7) = 40 with c < b < a for the seventh triple (16, 15, 9); a(8) = 153 with a < c < b for the eighth triple (17, 72, 64).
Crossrefs
Programs
-
Maple
for a from 2 to 100 do for c from 3 to floor(a^2/2) do d := c*(a+c); if issqr(d) and igcd(a, sqrt(d), c)=1 and abs(a-c)
-
PARI
lista(nn) = {for (a = 2, nn, for (c = 3, a^2\2, my(d = c*(a+c)); if (issquare(d) && (gcd([a, sqrtint(d), c])==1) && (abs(a-c)
Michel Marcus, May 12 2022
Comments