A293694 Numbers z such that x^2 + y^8 = z^2 for positive integers x and y.
20, 34, 65, 135, 320, 369, 544, 1040, 1095, 1305, 1350, 1404, 1620, 1625, 1746, 1971, 2056, 2160, 2379, 2754, 3060, 3281, 3996, 4100, 4470, 5120, 5265, 5904, 6625, 7825, 7830, 8194, 8575, 8704, 8796, 10250, 10935, 11125, 11700, 12500, 13154, 14500, 15579
Offset: 1
Keywords
Examples
12^2 + 2^8 = 20^2, 20 is a term. 63^2 + 2^8 = 65^2, 65 is a term.
Links
- Karl-Heinz Hofmann, Table of n, a(n) for n = 1..13695
Programs
-
Mathematica
z[n_] := Count[n^2 - Range[(n^2 - 1)^(1/8)]^8, _?(IntegerQ[Sqrt[#]] &)] > 0; Select[Range[16000], z]
Comments