A293692 Numbers z such that x^2 + y^7 = z^2 for positive integers x and y.
12, 18, 33, 54, 126, 160, 272, 366, 375, 520, 531, 540, 594, 630, 756, 825, 945, 1028, 1044, 1094, 1350, 1372, 1506, 1536, 1575, 1980, 2050, 2219, 2304, 2619, 2940, 3250, 3500, 3645, 3906, 3925, 4097, 4224, 4390, 4625, 5500, 5844, 5988, 6048, 6192, 6283, 6422
Offset: 1
Examples
4^2 + 2^7 = 12^2, 12 is a term. 31^2 + 2^7 = 33^2, 33 is a term.
Programs
-
Mathematica
z[n_] := Count[n^2 - Range[(n^2 - 1)^(1/7)]^7, _?(IntegerQ[Sqrt[#]] &)] > 0; Select[Range[6550], z]
Comments