A212292 Odd numbers not of the form p^2 + q^2 + r with p, q, and r prime.
1, 3, 5, 7, 9, 17, 33, 43, 83, 179, 623, 713, 1019
Offset: 1
References
- Wang Mingqiang, On sums of a prime, and a square of prime, and a k-power of prime, Northeastern Mathematical Journal 18:4 (2002), pp. 283-286.
Programs
-
PARI
list(lim)=my(p1=vector(primepi(sqrt(lim-5.5)),i,prime(i)^2), p2=List(), v=List(), u=List([1,3,5,7,9]), t); for(i=1,#p1, for(j=i,#p1,t=p1[i]+p1[j]; if(t>lim, break, listput(p2,t)))); p2=vecsort(Vec(p2),,8); for(i=1,#p2,forprime(p=2,lim-p2[i],listput(v,p2[i]+p))); v=select(n->n%2, vecsort(Vec(v),,8)); for(i=2,#v,forstep(j=v[i-1]+2,v[i]-2,2,listput(u,j))); Vec(u)
Comments