OFFSET
1,1
COMMENTS
Primes of the form x^2+xy+61y^2, whose discriminant is -243. - T. D. Noe, May 17 2005
Primes of the form (x^2 + 243*y^2)/4. - Arkadiusz Wesolowski, May 30 2015
REFERENCES
K. Ireland and M. Rosen, A classical introduction to modern number theory, Vol. 84, Graduate Texts in Mathematics, Springer-Verlag. Exercise 23, p. 135.
LINKS
Bruno Berselli, Table of n, a(n) for n = 1..1000
MATHEMATICA
p6 = Select[6*Range[0, 400]+1, PrimeQ]; Select[p6, (Reduce[3 == k^3+m*#, {k, m}, Integers] =!= False)&] (* Jean-François Alcover, Feb 20 2014 *)
PROG
(PARI) forprime(p=1, 9999, p%6==1&&ispower(Mod(3, p), 3)&&print1(p", ")) \\ M. F. Hasler, Feb 18 2014
(PARI) is_A014753(p)={p%6==1&&ispower(Mod(3, p), 3)&&isprime(p)} \\ M. F. Hasler, Feb 18 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Bruno Berselli, Feb 20 2014
STATUS
approved