login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A085634
Numbers of the form 2^a + 3^b = 2^c + 3^d for nonnegative a, b, c, d and a <> c.
3
5, 11, 17, 35, 259
OFFSET
1,1
COMMENTS
No more terms < 10^4000. - David Wasserman, Feb 07 2005
LINKS
EXAMPLE
a(5) = 256 + 3 = 2^8 + 3^1 = 259 = 16 + 243 = 2^4 + 3^5.
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 *)
CROSSREFS
Sequence in context: A155030 A030468 A277290 * A157478 A297583 A356756
KEYWORD
nonn,fini,full
AUTHOR
Frank Ellermann, Jul 11 2003
STATUS
approved