[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176969
Numbers n such that n^2 + 13^2 is prime.
5
2, 8, 10, 12, 20, 22, 28, 30, 32, 38, 42, 48, 58, 60, 62, 68, 80, 90, 100, 108, 110, 112, 122, 128, 138, 142, 148, 150, 168, 172, 180, 190, 198, 200, 202, 210, 228, 230, 232, 238, 242, 248, 258, 262, 268, 280, 282, 302, 310, 318, 340, 342, 360, 362, 368, 378
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