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

A176683
Numbers k such that k^2 +-11 are primes.
5
90, 120, 210, 270, 300, 510, 690, 720, 780, 960, 1200, 2190, 4260, 4350, 4470, 4920, 4980, 5040, 5100, 5250, 5550, 5670, 5730, 5790, 6810, 8100, 8280, 8490, 8610, 9150, 9540, 9990, 10140, 10200, 10650, 11130, 11430, 12060, 12510, 12930, 13770, 13800
OFFSET
1,1
LINKS
EXAMPLE
90 is in the sequence, because 90^2 - 11 = 8089 and 90^2 + 11 = 8111 are primes.
MATHEMATICA
Select[Range[8! ], PrimeQ[ #^2-11]&&PrimeQ[ #^2+11]&]
Select[Range[14000], AllTrue[#^2+{11, -11}, PrimeQ]&] (* Harvey P. Dale, Aug 03 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved