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 27 mod 44.
1

%I #11 Sep 08 2022 08:45:36

%S 71,379,467,599,643,863,907,1039,1171,1259,1303,1523,1567,1699,1787,

%T 1831,2447,2579,2711,2843,2887,3019,3371,3547,3767,3943,4339,4603,

%U 4691,4999,5087,5351,5483,5527,5659,5791,5879,5923,6011,6143,6451,6803,7243,7331

%N Primes congruent to 27 mod 44.

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

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

%t Select[Prime[Range[2500]],MemberQ[{27},Mod[#,44]]&] (* _Vincenzo Librandi_, Aug 25 2012 *)

%t Select[Range[27,8000,44],PrimeQ] (* _Harvey P. Dale_, Mar 13 2016 *)

%o (Magma) [p: p in PrimesUpTo(8000) | p mod 44 eq 27]; // _Vincenzo Librandi_, Aug 25 2012

%o (PARI) is(n)=isprime(n) && n%44==27 \\ _Charles R Greathouse IV_, Jul 03 2016

%Y Cf. A000040.

%K nonn,easy

%O 1,1

%A _N. J. A. Sloane_, Jul 11 2008