OFFSET
1,1
COMMENTS
See Corolario 5.1.1. of the reference file (first section).
(a_1, b_1, c_1) = (3,4,5) and for each n > 1:
(a_n, b_n, c_n) = (c_(n-1), (c_(n-1))^2-1)/2, ((c_(n-1))^2+1)/2).
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, Capitulo 5. Catetos, El Libro de las Ternas Pitagóricas.
EXAMPLE
Triples begin:
3, 4, 5;
5, 12, 13;
13, 84, 85;
85, 3612, 3613;
...
MATHEMATICA
{a0, b0, c0}={3, 4, 5};
m=8;
f[n_]:=Module[{fn0=c0, fn1=(c0^2+1)/2}, Do[{fn0, fn1}={fn1, (fn0^2+1)/2}, {2n-1}]; fn0]; t[n_]:={f[n-1], f[n]-1, f[n]};
ternas={a0, b0, c0};
For[i=1, i<=m, i++, ternas=Join[ternas, t[i]]];
ternas
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Miguel-Ángel Pérez García-Ortega, Sep 19 2023
STATUS
approved