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

Numbers n such that numbers 24n+13 are primes.
2

%I #2 Mar 31 2012 10:22:09

%S 0,1,2,4,6,7,9,11,14,15,16,17,22,25,27,29,30,31,34,35,36,41,42,44,45,

%T 46,50,51,57,59,60,64,66,67,69,70,72,74,77,80,84,85,92,94,95,97,99,

%U 101,106,111,114,116,121,126,127,129,132,134,135,137,140,144,146,147,150,151

%N Numbers n such that numbers 24n+13 are primes.

%t a = {}; Do[If[PrimeQ[24 n + 13], AppendTo[a, n]], {n, 0, 200}]; a

%K nonn

%O 1,3

%A _Artur Jasinski_, Apr 25 2008