A336751 Smallest side of integer-sided triangles whose sides a < b < c are in arithmetic progression.
2, 3, 3, 4, 4, 5, 4, 5, 6, 5, 6, 7, 5, 6, 7, 8, 6, 7, 8, 9, 6, 7, 8, 9, 10, 7, 8, 9, 10, 11, 7, 8, 9, 10, 11, 12, 8, 9, 10, 11, 12, 13, 8, 9, 10, 11, 12, 13, 14, 9, 10, 11, 12, 13, 14, 15, 9, 10, 11, 12, 13, 14, 15, 16, 10, 11, 12, 13, 14, 15, 16, 17, 10, 11, 12, 13, 14
Offset: 1
Keywords
Examples
a = 2 for only the smallest triangle (2, 3, 4). a = 3 for Pythagorean triple (3, 4, 5) and also for the second triangle (3, 5, 7).
References
- V. Lespinard & R. Pernet, Trigonométrie, Classe de Mathématiques élémentaires, programme 1962, problème B-290 p. 121, André Desvigne.
Links
- Paolo Xausa, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Maple
for b from 3 to 30 do for a from b-floor((b-1)/2) to b-1 do c := 2*b - a; print(a); end do; end do;
-
Mathematica
Flatten[Array[Range[#-Floor[(#-1)/2], #-1] &, 20, 3]] (* Paolo Xausa, Feb 28 2024 *)
Formula
a(n) = A336750(n, 1).
Comments