A302174 Smallest solution x of x^n + y^(n+1) = z^(n+2), x, y, z >= 1.
1, 2, 27, 256, 472392, 262144, 13759414272, 4294967296, 4057816381784064
Offset: 0
Examples
1^0 + 3^1 = 2^2, therefore a(0) = 1. 2^1 + 5^2 = 3^3, so a(1) = 2. (No solution can have x = 1 because z^3 - 1 = (z - 1)(z^2 + z + 1) cannot be a square: if a = z - 1, then z^2 + z + 1 = a^2 + 3a + 3 is congruent to 3 modulo any factor of a, and a = 3b yields z^3 - 1 = 9*b*(3*b^2 + 3b + 1), the last factor being congruent to 1 modulo any factor of b, and cannot be a square.) 27^2 + 18^3 = 9^4, so a(2) = 27. 256^3 + 64^4 = 32^5, so a(3) = 256. 472392^4 + 52488^5 = 8748^6, so a(4) = 472392.
Crossrefs
Formula
For odd n, a(n) <= 2^((n+1)^2/2); for even n, a(n) <= 2^(n*(n+1)/2)*3^(n+2).
We may conjecture that, for n > 4, a(n) is given by these upper limits.
Extensions
Extended to a(0) = 1 by M. F. Hasler, Apr 13 2018
Comments