OFFSET
1,1
COMMENTS
Motivation for this sequence is the equation m^k = x^3 + y^3 where x,y,m > 0 and k >= 2.
Obviously, because of Fermat's Last Theorem, a(n) cannot be a cube.
A050802 is a subsequence.
Obviously, this sequence contains all numbers of the form 2^(3*n+1) and 3^(3*n-1), for n > 0.
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..5012
EXAMPLE
9 is a term because 9 = 3^2 = 1^3 + 2^3.
16 is a term because 16 = 2^4 = 2^3 + 2^3.
243 is a term because 243 = 3^5 = 3^3 + 6^3.
PROG
(PARI) T = thueinit('z^3+1);
is(n) = #select(v->min(v[1], v[2])>0, thue(T, n))>0;
for(n=2, 1e7, if(ispower(n) && is(n), print1(n, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Jan 10 2016
STATUS
approved