A085634 Numbers of the form 2^a + 3^b = 2^c + 3^d for nonnegative a, b, c, d and a <> c.
5, 11, 17, 35, 259
Offset: 1
Examples
a(5) = 256 + 3 = 2^8 + 3^1 = 259 = 16 + 243 = 2^4 + 3^5.
Links
- Douglas Edward Iannucci, On duplicate representations as 2^x+3^y for nonnegative integers x and y, arXiv:1907.03347 [math.NT], 2019.
Programs
-
Mathematica
(* Max exponent 8 is sufficient to get all known solutions *) f[] = 0; Reap[Do[n = 2^a + 3^b; f[n] = f[n] + 1; If[f[n] == 1, ab[n] = {a, b}, If[f[n] >= 2, Print[HoldForm[2^x + 3^y] /. Thread[{x, y} -> ab[n]], " = ", HoldForm[2^x + 3^y] /. Thread[{x, y} -> {a, b}], " = ", n]; Sow[n]]], {a, 0, 8}, {b, 0, 8}]][[2, 1]] // Union (* _Jean-François Alcover, Apr 29 2014 *)
Comments