OFFSET
1,1
REFERENCES
G. H. Hardy, Ramanujan, Cambridge Univ. Press, 1940, p. 12.
David Wells, The Penguin Dictionary of Curious and Interesting Numbers, Penguin Books, NY, 1986, p. 165.
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..10000
Christian N. K. Anderson, Decomposition of first 10000 terms into cube triples
MATHEMATICA
Select[Range[4000], Length[PowersRepresentations[#, 3, 3]] > 1 &] (* Harvey P. Dale, Feb 03 2011 *)
PROG
(PARI) is(n)=my(t); for(a=0, sqrtnint(n, 3), my(a3=a^3, c); for(b=0, min(a, sqrtnint(n-a3, 3)), if(ispower(n-a3-b^3, 3, &c) && c <= b && t++>1, return(1)))); 0 \\ Charles R Greathouse IV, Jul 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved