A068536 Numbers m such that m^2 + (reversal of m)^2 is a square. (Leading 0's are ignored.)
88209, 90288, 125928, 196020, 368280, 829521, 1978020, 2328480, 5513508, 8053155, 19798020, 86531940, 197998020, 554344560, 556326540, 1960396020, 1979998020, 5543944560, 5925169800, 8820988209, 9028890288, 12592925928, 14011538112, 19602196020, 19799998020
Offset: 1
Examples
88209^2 + 90288^2 = 126225^2, so 88209 belongs to the sequence.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..60
- Sheng Jiang and Rui-Chen Chen, Digits reversed Pythagorean triples, International Journal of Mathematical Education in Science and Technology, volume 29, number 5, 1998, pages 689-696.
Programs
-
Mathematica
Do[If[IntegerQ[Sqrt[n^2 + FromDigits[Reverse[IntegerDigits[n]]]^2]], Print[n]], {n, 1, 10^6}]
Extensions
a(7)-a(15) from Donovan Johnson, Apr 09 2010
a(16)-a(25) from Donovan Johnson, Jul 15 2011
Comments