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”).

A296507
Numbers m such that m^2 - 13 is a prime.
3
4, 6, 12, 18, 24, 30, 36, 54, 72, 84, 90, 96, 102, 114, 120, 138, 168, 186, 198, 204, 210, 216, 228, 240, 276, 294, 318, 330, 354, 360, 372, 378, 402, 414, 438, 444, 456, 480, 498, 504, 588, 600, 612, 618, 630, 636, 666, 678, 690, 714, 720, 726, 732, 738, 762
OFFSET
1,1
COMMENTS
All terms except 4 are divisible by 6. - Robert Israel, Dec 13 2017
LINKS
MAPLE
select(n -> isprime(n^2-13), 2*[$2..10^4]); # Robert Israel, Dec 13 2017
MATHEMATICA
Reap[m=4; Do[If[PrimeQ[m^2-13], Sow[m]]; m=m+2, {1000}]][[2, 1]]
Select[Range[800], PrimeQ[#^2-13]&] (* Harvey P. Dale, Mar 06 2023 *)
PROG
(PARI) isok(n) = isprime(n^2-13); \\ Michel Marcus, Dec 14 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Dec 13 2017
STATUS
approved