This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A020894 #22 Apr 14 2019 14:05:18 %S A020894 0,2,7,9,16,19,26,28,35,37,54,56,61,63,65,72,91,98,117,124,126,127, %T A020894 128,133,152,169,189,208,215,217,218,224,243,250,271,279,280,296,316, %U A020894 331,335,341,342,344,351,370,386,387,397,407,432,448,468,469 %N A020894 Nonnegative numbers that are sums of two nonzero cubes. %C A020894 From _Michael B. Porter_, Oct 16 2009: (Start) %C A020894 When calculating terms, there is no need to search beyond a value x defined by x^3 - (x-1)^3 = n. The positive solution is given by x = 1/2 + (sqrt(12n-3))/6. %C A020894 There are no cubes in this sequence, but the numbers before and after a cube are all included. (End) %H A020894 Charles R Greathouse IV, <a href="/A020894/b020894.txt">Table of n, a(n) for n = 1..10000</a> %H A020894 Steven R. Finch, <a href="http://www.people.fas.harvard.edu/~sfinch/csolve/fermat.pdf">On a Generalized Fermat-Wiles Equation</a> [broken link] %H A020894 Steven R. Finch, <a href="http://web.archive.org/web/20010602030546/http://www.mathsoft.com/asolve/fermat/fermat.html">On a Generalized Fermat-Wiles Equation</a> [From the Wayback Machine] %e A020894 From _Michael B. Porter_, Oct 16 2009: (Start) %e A020894 7 is in the sequence because 2^3 + (-1)^3 = 7 %e A020894 8 is not in the sequence because the only solutions to x^3 + y^3 = 8 have either x=0 or y=0. (End) %t A020894 Reap[For[n = 0, n < 500, n++, fi = FindInstance[x > 0 && y != 0 && n == x^3 + y^3, {x, y}, Integers, 1]; If[fi =!= {}, Print[n, " = ", Hold[x^3 + y^3] /. fi[[1]]]; Sow[n]]]][[2, 1]] (* _Jean-François Alcover_, Nov 05 2016 *) %o A020894 (PARI) isA020894(n) = {r=0;x=1.0/2+sqrt(12*n-3.0)/6;for(i=1,floor(x),if(ispower(n-i^3,3) & (n != i^3),r++));r>0}; \\ _Michael B. Porter_, Oct 16 2009 %o A020894 (PARI) T=thueinit('z^3+1); %o A020894 is(n)=n==0 || #select(v->v[1] && v[2], thue(T, n))>0 \\ _Charles R Greathouse IV_, Nov 29 2014 %Y A020894 Cf. A045980 [From _Michael B. Porter_, Oct 16 2009] %K A020894 nonn %O A020894 1,2 %A A020894 _Steven Finch_ %E A020894 Definition and offset edited by _N. J. A. Sloane_, Dec 01 2009