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

Primes congruent to 32 mod 67.
3

%I #14 Sep 08 2022 08:45:40

%S 233,367,769,1171,1439,2243,2377,3181,3449,3583,3851,4253,4789,5861,

%T 6263,6397,7603,8273,9479,9613,11087,11489,12829,13499,13633,13901,

%U 14303,14437,15107,15241,15643,16447,17117,17519,17921,18457,18859

%N Primes congruent to 32 mod 67.

%H Vincenzo Librandi, <a href="/A154621/b154621.txt">Table of n, a(n) for n = 1..1000</a>

%F a(n) ~ 66n log n. - _Charles R Greathouse IV_, Jul 02 2016

%t Select[Prime[Range[2000]],MemberQ[{32},Mod[#,67]]&] (* _Vincenzo Librandi_, Aug 09 2012 *)

%o (Magma) [p: p in PrimesUpTo(20000) | p mod 67 eq 32 ]; // _Vincenzo Librandi_, Aug 09 2012

%o (PARI) is(n)=isprime(n) && n%67==32 \\ _Charles R Greathouse IV_, Jul 02 2016

%Y Cf. A144562.

%K nonn,easy

%O 1,1

%A _Vincenzo Librandi_, Jan 17 2009

%E Edited by _N. J. A. Sloane_, Jun 23 2010