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

A154621
Primes congruent to 32 mod 67.
3
233, 367, 769, 1171, 1439, 2243, 2377, 3181, 3449, 3583, 3851, 4253, 4789, 5861, 6263, 6397, 7603, 8273, 9479, 9613, 11087, 11489, 12829, 13499, 13633, 13901, 14303, 14437, 15107, 15241, 15643, 16447, 17117, 17519, 17921, 18457, 18859
OFFSET
1,1
LINKS
FORMULA
a(n) ~ 66n log n. - Charles R Greathouse IV, Jul 02 2016
MATHEMATICA
Select[Prime[Range[2000]], MemberQ[{32}, Mod[#, 67]]&] (* Vincenzo Librandi, Aug 09 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(20000) | p mod 67 eq 32 ]; // Vincenzo Librandi, Aug 09 2012
(PARI) is(n)=isprime(n) && n%67==32 \\ Charles R Greathouse IV, Jul 02 2016
CROSSREFS
Cf. A144562.
Sequence in context: A087862 A141280 A097446 * A243891 A142644 A302004
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 17 2009
EXTENSIONS
Edited by N. J. A. Sloane, Jun 23 2010
STATUS
approved