OFFSET
1,1
COMMENTS
Primes which are not congruent to 1, 5, or 9 (mod 20).
A216286 is the union of {5} and this sequence. - N. J. A. Sloane, Sep 04 2012
REFERENCES
David A. Cox, Primes of the Form x^2 + n y^2, Wiley, 1989. See Eq. (1.20), p. 19 and Eq. (2.22), p. 32. - N. J. A. Sloane, Sep 03 2012
FORMULA
a(n) ~ 4/3 * n log n. - Charles R Greathouse IV, Jan 12 2017
PROG
(PARI) list(lim)=my(v=List(), t); forprime(p=2, lim, t=p%20; if(t!=1 && t!=9 && t!=5, listput(v, p))); Vec(v) \\ Charles R Greathouse IV, Jan 12 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
V. Raman, Sep 03 2012
STATUS
approved