A267415 Integers n such that n^n = (x^3 + y^3) / 2 where x, y > 0, is soluble.
0, 1, 3, 6, 8, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 64, 66, 69, 72, 75, 76, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 112, 114, 117, 120, 123, 125, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162
Offset: 1
Keywords
Examples
1 is a term because 1^1 = 1 = (1^3 + 1^3) / 2. 3 is a term because 3^3 = 27 = (3^3 + 3^3) / 2. 8 is a term because 8^8 = 2^24 = (256^3 + 256^3) / 2.
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..228
Programs
-
Mathematica
Select[Range@ 24, Resolve[Exists[{x, y}, And[Reduce[#^# == (x^3 + y^3)/2, {x, y}, Integers], x > 0, y > 0]]] &] (* Michael De Vlieger, Jan 15 2016 *) -
PARI
T=thueinit('z^3+1); is(n) = #select(v->min(v[1], v[2])>0, thue(T, n))>0; for(n=0, 28, if(is(2*n^n), print1(n, ", ")));
Extensions
a(13) from Michael De Vlieger, Jan 15 2016
a(14)-a(60) from Chai Wah Wu, Jan 18 2016
Comments