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

A092446
Numbers n such that if P = 10*n^2+1, then P, P+6, P+12 and P+18 are all primes.
0
1, 2, 5, 8, 20, 83, 110, 128, 141, 216, 223, 334, 506, 810, 825, 867, 1086, 1171, 1861, 2178, 2295, 2680, 2911, 3803, 4884, 7737, 8010, 8457, 8520, 9858, 9882, 10379, 11871
OFFSET
1,2
EXAMPLE
a(3) = 5; 10*5^2+1 = 251. 251+6 = 257; 251+12 = 263; 251+18=269. 251, 257, 263 and 269 are all primes.
MATHEMATICA
pQ[n_]:=Module[{x=10n^2+1}, And@@PrimeQ/@(x+ {0, 6, 12, 18})]; Select[Range[12000], pQ] (* Harvey P. Dale, Mar 22 2011 *)
CROSSREFS
Sequence in context: A139407 A107384 A205596 * A087077 A200276 A168081
KEYWORD
nonn
AUTHOR
Ray G. Opao, Mar 24 2004
EXTENSIONS
More terms from Harvey P. Dale, Mar 22 2011.
STATUS
approved