login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A372220
Four-column table read by rows: row n is the unique primitive Pythagorean quadruple (a,b,c,d) such that a > (a + b + c - d)/2 = 2n(n + 1) and b = c.
2
17, 20, 20, 33, 31, 42, 42, 67, 49, 72, 72, 113, 71, 110, 110, 171, 97, 156, 156, 241, 127, 210, 210, 323, 161, 272, 272, 417, 199, 342, 342, 523, 241, 420, 420, 641, 287, 506, 506, 771, 337, 600, 600, 913, 391, 702, 702, 1067, 449, 812, 812, 1233, 511, 930, 930, 1411, 577, 1056, 1056, 1601
OFFSET
2,1
COMMENTS
A Pythagorean quadruple is a quadruple (a,b,c,d) of positive integers such that a^2 + b^2 + c^2 = d^2 with a <= b <= c. Its inradius is (a+b+c-d)/2, which is a positive integer.
REFERENCES
Miguel Ángel Pérez García-Ortega, José Manuel Sánchez Muñoz and José Miguel Blanco Casado, El Libro de las Ternas Pitagóricas, Preprint 2024.
LINKS
Miguel-Ángel Pérez García-Ortega, Teorema 10.13
FORMULA
Row n = (a, b, c, d) = (2n^2 + 4n + 1, 4n^2 + 2n, 4n^2 + 2n, 6n^2 + 4n + 1).
EXAMPLE
Table begins:
n=2: 17, 20, 20, 33;
n=3: 31, 42, 42, 67;
n=4: 49, 72, 72, 113;
n=5: 71, 110, 110, 171;
n=6: 97, 156, 156, 241;
MATHEMATICA
cuaternas={}; Do[cuaternas=Join[cuaternas, {2n^2+4n+1, 4n^2+2n, 4n^2+2n, 6n^2+4n+1}], {n, 2, 35}]; cuaternas
CROSSREFS
Cf. A372219, A056220 (first column), A002943 (second column), A080859 (fourth column).
Sequence in context: A174379 A178424 A068387 * A134539 A196571 A031169
KEYWORD
nonn,easy,tabf
STATUS
approved