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

A139528
Numbers n such that numbers 24n+11 are primes.
2
0, 2, 3, 4, 5, 7, 9, 10, 14, 17, 18, 19, 20, 23, 24, 27, 28, 34, 39, 40, 42, 45, 48, 49, 52, 53, 54, 59, 60, 62, 63, 65, 67, 69, 74, 75, 79, 80, 82, 83, 84, 87, 93, 94, 97, 100, 102, 105, 107, 112, 117, 118, 122, 123, 125, 128, 133, 135, 137, 138, 139, 140, 144, 145, 147
OFFSET
1,2
LINKS
MATHEMATICA
a = {}; Do[If[PrimeQ[24 n + 11], AppendTo[a, n]], {n, 0, 200}]; a
Select[Range[0, 200], PrimeQ[24#+11]&] (* Harvey P. Dale, Apr 08 2013 *)
PROG
(Magma) [n: n in [0..150] |IsPrime(24*n+11)]; // Vincenzo Librandi, Apr 09 2013
CROSSREFS
Sequence in context: A307002 A274583 A055600 * A178434 A267439 A262691
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Apr 25 2008
STATUS
approved