login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A051388
Numbers whose 4th power can be expressed as the sum of two positive cubes in more than one way.
2
1729, 2457, 4104, 4914, 4977, 8001, 8216, 10773, 13832, 15561, 16263, 19656, 20683, 32832, 39312, 39816, 40033, 46683, 64008, 64232, 65728, 66339, 80236, 86184, 110656, 110808, 124336, 124488, 127062, 130104, 132678, 132867, 134379, 149389, 157248, 165464, 166887, 171288
OFFSET
1,1
LINKS
EXAMPLE
1729^4 = 1729^3 + 20748^3 = 15561^3 + 17290^3.
PROG
(PARI) for(i=1, 10^5, x=i^4; c=0; for(j=1, floor(sqrtn(x/2, 3)), if(ispower(x-j^3, 3), c++)); if(c>1, print(i" "c))) \\ Donovan Johnson, Aug 03 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from John W. Layman, Feb 24 2003
a(18)-a(24) from Donovan Johnson, Aug 03 2009
a(25)-a(38) from Donovan Johnson, Dec 03 2010
STATUS
approved