Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Sep 08 2022 08:45:36
%S 89,191,293,599,701,1109,1619,1721,1823,2027,2129,2333,2741,2843,3251,
%T 3557,3659,3761,3863,4271,4373,4679,5087,5189,5393,5801,5903,6311,
%U 6719,7127,7229,7331,7433,7841,8147,8861,8963,9371,9473,9677,10289,10391,10799,11003
%N Primes congruent to 38 mod 51.
%H Vincenzo Librandi, <a href="/A142499/b142499.txt">Table of n, a(n) for n = 1..1000</a>
%F a(n) ~ 32n log n. - _Charles R Greathouse IV_, Jul 03 2016
%t Select[Prime[Range[2400]], MemberQ[{38}, Mod[#, 51]] &] (* _Vincenzo Librandi_, Aug 28 2012 *)
%o (Magma) [p: p in PrimesUpTo(13000) | p mod 51 eq 38]; // _Vincenzo Librandi_, Aug 28 2012
%o (PARI) is(n)=isprime(n) && n%51==38 \\ _Charles R Greathouse IV_, Jul 03 2016
%Y Cf. A000040.
%K nonn,easy
%O 1,1
%A _N. J. A. Sloane_, Jul 11 2008