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!)
A357276 Middle side of integer-sided primitive triangles whose angles satisfy A < B < C = 2*Pi/3 = 120 degrees. 4

%I #11 Sep 30 2022 23:43:01

%S 5,8,16,24,33,35,39,56,45,63,51,85,80,57,77,95,120,120,88,91,115,143,

%T 112,161,105,175,165,195,208,160,168,145,224,203,187,221,155,261,217,

%U 192,279,209,288,247,320,272,323,280,231,315,273,259,385,357,333,304,399,352,253,407,299,287,440

%N Middle side of integer-sided primitive triangles whose angles satisfy A < B < C = 2*Pi/3 = 120 degrees.

%C The triples of sides (a,b,c) with a < b < c are in nondecreasing order of largest side c, and if largest sides coincide, then by increasing order of the smallest side. This sequence lists the b's.

%C For the corresponding primitive triples and miscellaneous properties and references, see A357274.

%C Solutions b of the Diophantine equation c^2 = a^2 + a*b + b^2 with gcd(a,b) = 1 and a < b.

%C Also, b is generated by integers u, v such that gcd(u,v) = 1 and 0 < v < u, with b = 2*u*v + v^2.

%C This sequence is not increasing. For example, a(8) = 56 for triangle with largest side c = 61 while a(9) = 45 for triangle with largest side c = 67.

%C Differs from A088586, the first 20 terms are the same then a(21) = 115 while A088586(21) = 143.

%C A229849 gives all the possible values of the middle side b, in increasing order without repetition, for primitive triples, while A229859 gives all the possible values of the middle side b, in increasing order without repetition, but for all triples, not necessarily primitive.

%e a(17) = a(18) = 120 since 17th and 18th triples are respectively (13, 120, 127) and (23, 120, 133).

%p for c from 5 to 500 by 2 do

%p for a from 3 to c-2 do

%p b := (-a + sqrt(4*c^2-3*a^2))/2;

%p if b=floor(b) and gcd(a,b)=1 and a<b then print(b); end if;

%p end do;

%p end do;

%Y Cf. A357274 (triples), A357275 (smallest side), this sequence (middle side), A357277 (largest side), A357278 (perimeter).

%Y Cf. also A088586, A229849, A229859.

%K nonn

%O 1,1

%A _Bernard Schott_, Sep 25 2022

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 August 10 13:12 EDT 2024. Contains 375056 sequences. (Running on oeis4.)