OFFSET
1,1
COMMENTS
The n^2 + d conjecture is a famous and still unsolved problem.
It states that there exist an infinite number of primes whose values are of the form n^2 + d for some integer n.
This is case d = 13^2.
REFERENCES
J. Matousek, J. Nesetril: Diskrete Mathematik: eine Entdeckungsreise, Springer-Lehrbuch, 2. Aufl., Berlin, 2007
M. du Sautoy: Die Musik der Primzahlen: Auf den Spuren des groessten Raetsels der Mathematik, Deutscher Taschenbuch Verlag, 2006
EXAMPLE
2^2 + 13^2 = 173 = prime(40), 2 is first term.
12^2 + 13^2 = 313 = prime(65) = palprime(11), 12 is 4th term.
310^2 + 13^2 = 96269 = prime(9274) = palprime(106), 310 the 49th term.
PROG
(PARI) isok(n) = isprime(n^2 + 13^2) \\ Michel Marcus, Jun 28 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Eva-Maria Zschorn (e-m.zschorn(AT)zaschendorf.km3.de), Apr 29 2010
STATUS
approved