cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-6 of 6 results.

A343063 Primitive triples (a, b, c) for integer-sided triangles whose angle B = 2*C.

Original entry on oeis.org

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

Views

Author

Bernard Schott, Apr 04 2021

Keywords

Comments

This sequence is inspired by the problem of French Baccalauréat Mathématiques at Lyon in 1937 (see link).
The triples (a, b, c) are displayed in increasing order of side a, and if sides a coincide then in increasing order of the side b.
If in triangle ABC, B = 2*C, then the corresponding metric relation between sides is a*c + c^2 = c * (a + c) = b^2.
This metric relation is equivalent to a = m^2 - k^2, b = m * k, c = k^2, gcd(m,k) = 1 and k < m < 2k; hence every c is a square number.
When A <> 45° and A <> 72°, table below shows there exist these 3 possible inequalities: c < b < a, c < a < b, a < c < b.
------------------------------------------------------------------------
| A | 180 | decr. | 72 | decr. | 45 | decr. | 0 |
------------------------------------------------------------------------
| B | 0 | incr. | 72 | incr. | 90 | incr. | 120 |
------------------------------------------------------------------------
| C | 0 | incr. | 36 | incr. | 45 | incr. | 60 |
------------------------------------------------------------------------
| < | No | c < b < a | c < b=a | c < a < b | c=a < b | a < c < b | No |
------------------------------------------------------------------------
where 'No' means there is no such corresponding triangle.
If (A,B,C) = (72,72,36) then a = b = c * (1+sqrt(5))/2 and isosceles ABC is not an integer-sided triangle.
If (A,B,C) = (45,90,45) then ABC is isosceles rectangle in B, so a = c with b = a*sqrt(2) and ABC is not an integer-sided triangle.

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.

Crossrefs

Cf. A335893 (similar for A < B < C in arithmetic progression).
Cf. A343064 (side a), A343065 (side b), A343066 (side c), A343067 (perimeter).

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)
    				

A343064 Side a of primitive integer-sided triangles (a, b, c) whose angle B = 2*C.

Original entry on oeis.org

5, 7, 9, 11, 13, 15, 16, 17, 19, 21, 23, 24, 25, 27, 29, 31, 32, 33, 33, 35, 37, 39, 39, 40, 41, 43, 45, 47, 48, 49, 51, 51, 53, 55, 56, 56, 57, 57, 59, 61, 63, 64, 65, 67, 69, 69, 71, 72, 72, 73, 75, 75, 77, 79, 80, 81, 83, 85, 85, 87, 87, 88, 88, 89, 91, 93, 93, 95, 95, 96, 97, 99
Offset: 1

Views

Author

Bernard Schott, Apr 10 2021

Keywords

Comments

The triples (a, b, c) are displayed in increasing order of side a, and if sides a coincide then in increasing order of the side b.
In this case, the corresponding metric relation between sides is a*c + c^2 = c * (a + c) = b^2.
Equivalently, length of side common to the two angles, one being the double of the other, of a primitive integer-sided triangle.
For the corresponding primitive triples and miscellaneous properties and references, see A343063.

Examples

			According to inequalities between a, b, c, there exist 3 types of such triangles:
   c < a < b for the smallest side a = 5 and triple (5, 6, 4).
The first side a for which there exist two distinct triangles with B = 2C is for a = 33 with the two other types of examples,
   c < b < a with triple (33, 28, 16),
   a < c < b with triple (33, 272, 256).
		

Crossrefs

Cf. A353619 (similar, but with B = 3*C).
Cf. A343063 (triples), this sequence (side a), A343065 (side b), A343066 (side c), A343067 (perimeter).
Cf. A106505 (sides a without repetition), A106506 (sides a sorted on perimeter).

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)
    				

Formula

a(n) = A343063(n, 1).

A343065 Side b of integer-sided primitive triangles (a, b, c) whose angle B = 2*C.

Original entry on oeis.org

6, 12, 20, 30, 42, 56, 15, 72, 90, 110, 132, 35, 156, 182, 210, 240, 63, 28, 272, 306, 342, 40, 380, 99, 420, 462, 506, 552, 143, 600, 70, 650, 702, 756, 45, 195, 88, 812, 870, 930, 992, 255, 1056, 1122, 130, 1190, 1260, 77, 323, 1332, 154, 1406, 1482, 1560, 399, 1640, 1722, 66, 1806, 208, 1892, 117, 483, 1980, 2070, 238
Offset: 1

Views

Author

Bernard Schott, Apr 11 2021

Keywords

Comments

The triples (a, b, c) are displayed in increasing order of side a, and if sides a coincide then in increasing order of the side b.
This sequence is not increasing because a(7) = 15 < a(6) = 56 (A106430).
If in triangle ABC, B = 2*C, then the corresponding metric relation between sides is a*c + c^2 = c * (a + c) = b^2.
Equivalently, length of side opposite to the greater of the two angles, one being the double of the other.
For the corresponding primitive triples and miscellaneous properties and references, see A343063.

Examples

			According to inequalities between a, b, c, there exist 3 types of such triangles:
c < a < b for the first triple (5, 6, 4) with b = 6.
c < b < a for the second triple (16, 15, 9) with b = 15.
a < c < b for the seventh triple (7, 12, 9) with b = 12.
		

Crossrefs

Cf. A335895 (similar for A < B < C in arithmetic progression).
Cf. A343063 (triples), A343064 (side a), A343066 (side c), A343067 (perimeter).
Cf. A106420 (sides b sorted on perimeter), A106430 (sides b in increasing order).

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)
    				

Formula

a(n) = A343063(n, 2).

A343066 Side c of integer-sided primitive triangles (a, b, c) whose angle B = 2*C.

Original entry on oeis.org

4, 9, 16, 25, 36, 49, 9, 64, 81, 100, 121, 25, 144, 169, 196, 225, 49, 16, 256, 289, 324, 25, 361, 81, 400, 441, 484, 529, 121, 576, 49, 625, 676, 729, 25, 169, 64, 784, 841, 900, 961, 225, 1024, 1089, 100, 1156, 1225, 49, 289, 1296, 121, 1369, 1444, 1521, 361, 1600, 1681, 36, 1764, 169, 1849, 81, 441, 1936, 2025, 196
Offset: 1

Views

Author

Bernard Schott, Apr 12 2021

Keywords

Comments

The triples (a, b, c) are displayed in increasing order of side a, and if sides a coincide then in increasing order of the side b.
This sequence is not increasing because a(7) = 9 < a(6) = 49.
If in triangle ABC, B = 2*C, then the corresponding metric relation between sides is a*c + c^2 = c * (a + c) = b^2.
All terms are perfect squares >= 4.
For the corresponding primitive triples and miscellaneous properties and references, see A343063.

Examples

			According to inequalities between a, b, c, there exist 3 types of such triangles:
c = 4 with c < a < b for the first triple (5, 6, 4).
c = 9 with c < b < a for the seventh triple (16, 15, 9).
c = 16 with a < c < b for the third triple (9, 20, 16).
		

Crossrefs

Cf. A335896 (similar for A < B < C in arithmetic progression).
Cf. A343063 (triples), A343064 (side a), A343065 (side b), A343067 (perimeter).

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)
    				

Formula

a(n) = A343063(n, 3)

A106505 Ordered and uniqued length of side common to the two angles, one being the double of the other, of a primitive integer-sided triangle.

Original entry on oeis.org

5, 7, 9, 11, 13, 15, 16, 17, 19, 21, 23, 24, 25, 27, 29, 31, 32, 33, 35, 37, 39, 40, 41, 43, 45, 47, 48, 49, 51, 53, 55, 56, 57, 59, 61, 63, 64, 65, 67, 69, 71, 72, 73, 75, 77, 79, 80, 81, 83, 85, 87, 88, 89, 91, 93, 95, 96, 97, 99, 101, 103, 104, 105, 107, 109, 111, 112
Offset: 1

Views

Author

Lekraj Beedassy, May 04 2005

Keywords

Comments

The terms are proposed without repetition. For example, there exist two such triangles with a length of side = 33. They correspond respectively to s^2 - r^2 = 33 (see formula) with (r, s) = (4, 7) and sides (33, 28, 16), and the other triangle with (r, s) = (16, 17) and sides (33, 272, 256). Lengths = 39, 51, 57, 69, 75, ... correspond to two distinct triangles ... The lengths of these sides are proposed with repetition in A343064. - Bernard Schott, Apr 22 2021

Crossrefs

Formula

Values s^2 - r^2, where r
Conjecture: for n>2, a(n+5) = a(n) + 8. - Ralf Stephan, Nov 16 2010.
Empirical g.f.: -x*(x^7+x^6+3*x^5-2*x^4-2*x^3-2*x^2-2*x-5) / ((x-1)^2*(x^4+x^3+x^2+x+1)). - Colin Barker, Oct 05 2013

Extensions

Extended by Ray Chandler, May 09 2005

A353622 Perimeter of integer-sided primitive triangles (a, b, c) whose angle B = 3*C.

Original entry on oeis.org

21, 110, 315, 432, 684, 720, 1100, 1265, 1560, 1612, 2106, 1885, 2240, 3255, 3040, 3808, 3485, 3978, 4760, 4403, 5040, 5130, 5719, 6669, 6232, 6440, 7560, 9030, 7896, 8008, 9504, 8855, 9752, 11891, 10557, 11270, 13200, 11800, 12825, 15300, 14575, 14040, 16016
Offset: 1

Author

Bernard Schott, May 08 2022

Keywords

Comments

The triples (a, b, c) are displayed in increasing order of side b, and if sides b coincide then in increasing order of the side c.
This sequence is nonincreasing: a(12) = 1885 < a(11) = 2106.
If in triangle ABC, B = 3*C, then the corresponding metric relation between sides is c*a^2 = (b-c)^2 * (b+c).
For the corresponding primitive triples and miscellaneous properties and references, see A353618.

Examples

			According to inequalities between a, b, c, there exist 3 types of such triangles:
a(1) = 21 with a < c < b for the first triple (3, 10, 8);
a(2) = 110 with c < a < b for the 2nd triple (35, 48, 27);
a(8) = 1265 with c < b < a for the 8th triple (539, 510, 216).
		

Crossrefs

Cf. A353618 (triples), A353619 (side a), A353620 (side b), A353621 (side c).
Cf. A343067 (similar, but with B = 2*C).

Programs

  • Maple
    for b from 4 to 9000 do
      for q from 2 to floor((b-1)^(1/3)) do
        a := (b-q^3) * sqrt(1+b/q^3);
        if a=floor(a) and q^3 < b and igcd(a,b,q)=1 and b-q^3 < a and a < b+q^3 then
          print(a+b+q^3);
        end if;
      end do;
    end do;
  • PARI
    lista(nn) = {for (b = 4 , nn, for (q = 2 , sqrtnint(b-1, 3), if (issquare(z=1+b/q^3), a = (b-q^3) * sqrtint(numerator(z))/sqrtint(denominator(z)); if ((q^3 < b) && (gcd([a, b, q])==1) && (b-q^3 < a) && (a < b+q^3), print1(a+b+q^3, ", ");););););} \\ Michel Marcus, May 11 2022

Formula

a(n) = A353618(n, 1) + A353618(n, 2) + A353618(n, 3).
a(n) = A353619(n) + A353620(n) + A353621(n).
Showing 1-6 of 6 results.