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

A142271
Primes congruent to 22 mod 43.
2
151, 409, 839, 1097, 1613, 1699, 1871, 2129, 2473, 2731, 2903, 3677, 4021, 4451, 4967, 5483, 5569, 5741, 5827, 6257, 6343, 7547, 8837, 8923, 9181, 9439, 9697, 10729, 10987, 11159, 11503, 11933, 12277, 13309, 13567, 13997, 14083, 14341, 14771, 15287, 15373
OFFSET
1,1
LINKS
FORMULA
a(n) ~ 42n log n. - Charles R Greathouse IV, Jul 03 2016
MATHEMATICA
Select[Prime[Range[5000]], MemberQ[{22}, Mod[#, 43]] &] (* Vincenzo Librandi, Aug 25 2012 *)
Select[Range[22, 16000, 43], PrimeQ] (* Harvey P. Dale, Mar 25 2018 *)
PROG
(Magma) [p: p in PrimesUpTo(16000) | p mod 43 eq 22 ]; // Vincenzo Librandi, Aug 25 2012
(PARI) is(n)=isprime(n) && n%43==22 \\ Charles R Greathouse IV, Jul 03 2016
CROSSREFS
Cf. A000040.
Sequence in context: A078967 A089317 A141982 * A264822 A002226 A142361
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
STATUS
approved