A382308 Sum of the legs of the unique primitive Pythagorean triple whose inradius is A000045(n) and such that its long leg and its hypotenuse are consecutive natural numbers.
1, 7, 7, 17, 31, 71, 161, 391, 967, 2449, 6271, 16199, 42049, 109511, 285767, 746641, 1952287, 5107207, 13364449, 34978247, 91557511, 239673617, 627429887, 1642561927, 4300168321, 11257801351, 29473006471, 77160847121, 202008934687, 528864985799, 1384584451361
Offset: 0
Examples
For n=2, the short leg is A382608(2,1) = 3 and the long leg is A382608(2,2) = 4 so the sum of the legs is then a(2) = 3 + 4 = 7.
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 2025.
Links
- Miguel-Ángel Pérez García-Ortega, El Libro de las Ternas Pitagóricas
Programs
-
Mathematica
a=Table[Fibonacci[n],{n,0,30}];Apply[Join,Map[{2#^2+4#+1}&,a]]