OFFSET
1,1
COMMENTS
If a^5 + b^5 = m, then (ma)^5 + (mb)^5 = m^6 = (m^2)^3 is a cube. Therefore the square of each term of A003347 is a term of this sequence.
When k is in this sequence, k * (n^5), for n > 1, is also in this sequence.
EXAMPLE
4^3 = 2^6 = 2^5 + 2^5, so 4 is in the sequence.
1089^3 = 33^5 + 66^5, so 1089 is in the sequence.
MATHEMATICA
lst={}; Do[If[IntegerQ[(n^3-a^5)^(1/5)], AppendTo[lst, n]], {n, 10^7}, {a, (n^3/2)^(1/5)}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
XU Pingya, Sep 04 2017
STATUS
approved