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!)
A362218 Three-column array read by rows: row n gives the unique ordered primitive Pythagorean triple (a,b,c) with a<b such that (b+c)/a = n. 1
3, 4, 5, 8, 15, 17, 5, 12, 13, 12, 35, 37, 7, 24, 25, 16, 63, 65, 9, 40, 41, 20, 99, 101, 11, 60, 61, 24, 143, 145, 13, 84, 85, 28, 195, 197, 15, 112, 113, 32, 255, 257, 17, 144, 145, 36, 323, 325, 19, 180, 181, 40, 399, 401 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
Given an ordered primitive Pythagorean triple (a,b,c) with a<b, we call (b+c)/a the median radial proportion. This number gives us the proportion (r_b)/r, where r_b is the exinradius associated to the greater cathetus of the Pythagorean triangle (a,b,c) and r is the inradius of the same triangle.
For n>=3 there exists a unique ordered primitive Pythagorean triple such that (b+c)/a = n.
For n odd, the triple is {n, (n^2-1)/2, (n^2+1)/2}.
For n even, the triple is { 2*n, n^2-1, n^2+1 }.
REFERENCES
J. M. Blanco Casado, J. M. Sánchez Muñoz, and M. A. Pérez García-Ortega, El Libro de las Ternas Pitagóricas, Preprint 2023.
LINKS
Miguel-Ángel Pérez García-Ortega, Radial proportions (in Spanish).
FORMULA
T(n,1) = A022998(n).
T(n,2) = A066830(n).
T(n,3) = A228564(n).
a(6*k-3) = 2*k+1;
a(6*k-2) = ((2*k+1)^2 - 1)/2;
a(6*k-1) = ((2*k+1)^2 + 1)/2;
a(6*k) = 4*(k+1);
a(6*k+1) = 4*(k+1)^2 - 1;
a(6*k+2) = 4*(k+1)^2 + 1.
EXAMPLE
Irregular array begins:
n=3: 3, 4, 5;
n=4: 8, 15, 17;
n=5: 5, 12, 13;
n=6: 12, 35, 37;
n=7: 7, 24, 25;
...
Row n=3 is (3,4,5) and has (b+c)/a = (4+5)/3 = 3.
Row n=4 is (8,15,17) and has (b+c)/a = (15+17)/8 = 4.
MATHEMATICA
k=50;
ternas={{n, " ", a, b, c, " ", r, " ", " γ2 ", " ", s, " ", rb}}; Do[If[Mod[t, 2]==0, ternas=Join[ternas, {{t, " ", 2t, t^2-1, t^2+1, " ", t-1, " ", t, " ", t(t+1), " ", t(t-1)}}], ternas=Join[ternas, {{t, " ", t, (t^2-1)/2, (t^2+1)/2, " ", (t-1)/2, " ", t, " ", (t(t+1))/2, " ", (t(t-1))/2}}]], {t, 3, k+2}]
MatrixForm[Transpose[ternas]]
CROSSREFS
Cf. A022998 (short leg), A066830 (long leg), A228564 (hypotenuse).
Sequence in context: A055742 A263041 A216888 * A106048 A219038 A258454
KEYWORD
nonn,tabf
AUTHOR
EXTENSIONS
Edited by N. J. A. Sloane, Apr 30 2023
STATUS
approved

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 April 24 07:44 EDT 2024. Contains 371922 sequences. (Running on oeis4.)