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”).
%I #11 Sep 08 2022 08:45:35
%S 71,107,179,251,359,431,467,503,647,683,719,827,863,971,1151,1187,
%T 1223,1259,1367,1439,1511,1583,1619,1871,1907,1979,2087,2267,2339,
%U 2411,2447,2591,2663,2699,2843,2879,3023,3167,3203,3347,3491,3527,3671,3779,3851
%N Primes congruent to 35 mod 36.
%H Vincenzo Librandi, <a href="/A142111/b142111.txt">Table of n, a(n) for n = 1..1000</a>
%F a(n) ~ 12n log n. - _Charles R Greathouse IV_, Jul 02 2016
%t Select[Prime[Range[1500]],MemberQ[{35},Mod[#,36]]&] (* _Vincenzo Librandi_, Aug 19 2012 *)
%t Select[Range[35,4000,36],PrimeQ] (* _Harvey P. Dale_, Dec 25 2017 *)
%o (Magma) [p: p in PrimesUpTo(5000) | p mod 36 eq 35 ]; // _Vincenzo Librandi_, Aug 19 2012
%o (PARI) is(n)=isprime(n) && n%36==35 \\ _Charles R Greathouse IV_, Jul 02 2016
%Y Cf. A000040.
%K nonn,easy
%O 1,1
%A _N. J. A. Sloane_, Jul 11 2008