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

A142395
Primes congruent to 44 mod 47.
1
373, 467, 937, 1031, 1783, 1877, 2347, 2441, 3851, 4133, 4603, 5167, 5261, 5449, 6389, 6577, 7517, 8081, 8269, 8363, 9209, 9397, 9491, 9679, 10243, 10337, 12781, 13063, 13627, 13721, 15131, 15319, 15413, 15601, 16447, 16729, 16823, 17011, 17293, 17387, 17669
OFFSET
1,1
LINKS
FORMULA
a(n) ~ 46n log n. - Charles R Greathouse IV, Jul 03 2016
MATHEMATICA
Select[Prime[Range[2500]], MemberQ[{44}, Mod[#, 47]] &] (* Vincenzo Librandi, Aug 27 2012 *)
Select[Range[44, 18000, 47], PrimeQ] (* Harvey P. Dale, Jul 06 2014 *)
PROG
(Magma) [p: p in PrimesUpTo(18000) | p mod 47 eq 44]; // Vincenzo Librandi, Aug 27 2012
(PARI) is(n)=isprime(n) && n%47==44 \\ Charles R Greathouse IV, Jul 03 2016
CROSSREFS
Cf. A000040.
Sequence in context: A361344 A248799 A139659 * A182573 A142921 A263724
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
STATUS
approved