A214891 Numbers that are not the sum of two squares and two fourth powers.
23, 44, 71, 79, 184, 368, 519, 599, 704, 1136, 1264, 2944, 4024, 5888, 8304, 9584, 11264, 18176, 20224, 47104, 64384, 94208, 132864, 153344, 180224, 290816, 323584, 753664, 1030144, 1507328, 2125824, 2453504, 2883584, 4653056, 5177344, 12058624, 16482304
Offset: 1
Keywords
Links
- Donovan Johnson, Table of n, a(n) for n = 1..52 (terms <= 4*10^9)
- Zhi-Wei Sun, On w^4+x^4+y^2+z^2 over a number field, Question 414791 at MathOverflow, Jan. 27, 2022.
Programs
-
PARI
N=10^6; x='x+O('x^N); S(e)=sum(j=0, ceil(N^(1/e)), x^(j^e)); v=Vec( S(4)^2 * S(2)^2 ); for(n=1,#v,if(!v[n],print1(n-1,", ")));
Extensions
a(29)-a(37) from Donovan Johnson, Jul 29 2012
Comments