A230710 Values of x such that x^2 + y^2 = 5^n with x and y coprime and 0 < x < y.
1, 3, 2, 7, 38, 44, 29, 336, 718, 237, 2642, 10296, 8839, 16124, 108691, 164833, 24478, 922077, 2521451, 1476984, 6699319, 34182196, 35553398, 32125393, 306268562, 597551756, 130656229, 2465133864, 8701963882, 6890111163, 15949374758, 98248054847, 135250416961
Offset: 1
Keywords
Examples
a(4)=7 because 7^2 + 24^2 = 625 = 5^4.
Links
- Zak Seidov, Table of n, a(n) for n = 1..200
- Chris Busenhart, Lorenz Halbeisen, Norbert Hungerbühler, and Oliver Riesen, On primitive solutions of the Diophantine equation x^2+ y^2= M, Eidgenössische Technische Hochschule (ETH Zürich, Switzerland, 2020).
Programs
-
Mathematica
Table[Select[PowersRepresentations[5^n, 2, 2], CoprimeQ[#[[1]], #[[2]]] &][[1,1]], {n, 33}] (* T. D. Noe, Nov 04 2013 *)
Extensions
Typo in data fixed by Colin Barker, Nov 02 2013
Comments