OFFSET
1,1
COMMENTS
Integers n such that n*(4*n^2 - 1)/3 is the sum of 2 positive cubes.
EXAMPLE
3 is a term because 1^2 + 3^2 + 5^2 = 2^3 + 3^3.
48 is a term because 1^2 + 3^2 + 5^2 + ... + 95^2 = 31^3 + 49^3.
PROG
(PARI) isA003325(n) = for(k=1, sqrtnint(n\2, 3), ispower(n-k^3, 3) && return(1));
a000447(n) = n*(4*n^2 - 1)/3;
for(n=1, 1e5, if(isA003325(a000447(n)), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Mar 08 2016
EXTENSIONS
a(10)-a(23) from Chai Wah Wu, Mar 16 2016
STATUS
approved