OFFSET
1,2
COMMENTS
It is conjectured that this sequence is finite, with 7373170279850 as its last member. - Charles R Greathouse IV, Jan 14 2017
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
Brennan Benfield and Oliver Lippard, Integers that are not the sum of positive powers, arXiv:2404.08193 [math.NT], 2024. p. 5.
Eric Weisstein's World of Mathematics, Cubic Number
MATHEMATICA
pr[n_] := Select[ PowersRepresentations[n, 4, 3], FreeQ[#, 0] &]; Select[ Range[90], pr[#] == {} &] (* Jean-François Alcover, Nov 08 2012 *)
PROG
(PARI) list(lim)=my(v=List(), e=1+lim\1, x='x, t); t=sum(i=1, sqrtnint(e-4, 3), x^i^3, O(x^e))^4; for(n=1, lim, if(polcoeff(t, n)==0, listput(v, n))); Vec(v) \\ Charles R Greathouse IV, Jan 14 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved