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

A142229
Primes congruent to 32 mod 41.
1
73, 401, 647, 811, 1303, 1549, 1877, 2287, 2861, 3271, 3517, 4091, 4337, 4583, 4993, 5813, 6469, 6551, 6961, 7043, 7207, 7699, 8191, 8273, 8929, 9011, 9257, 9421, 9749, 10159, 10487, 10651, 10733, 10979, 11471, 11717, 12373, 12619, 13931, 14177, 14341
OFFSET
1,1
LINKS
FORMULA
a(n) ~ 40n log n. - Charles R Greathouse IV, Jul 03 2016
MATHEMATICA
Select[Prime[Range[5000]], MemberQ[{32}, Mod[#, 41]]&] (* Vincenzo Librandi, Aug 24 2012 *)
Select[Range[32, 15000, 41], PrimeQ] (* Harvey P. Dale, Nov 17 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(17000) | p mod 41 eq 32 ]; // Vincenzo Librandi, Aug 24 2012
(PARI) is(n)=isprime(n) && n%41==32 \\ Charles R Greathouse IV, Jul 03 2016
CROSSREFS
Cf. A000040.
Sequence in context: A170916 A200908 A031418 * A299103 A201961 A142145
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
STATUS
approved