A134517 Primes of the form 24*k - 1.
23, 47, 71, 167, 191, 239, 263, 311, 359, 383, 431, 479, 503, 599, 647, 719, 743, 839, 863, 887, 911, 983, 1031, 1103, 1151, 1223, 1319, 1367, 1439, 1487, 1511, 1559, 1583, 1607, 1823, 1847, 1871, 2039, 2063, 2087, 2111, 2207, 2351, 2399, 2423, 2447, 2543
Offset: 1
Keywords
Links
- Muniru A Asiru, Table of n, a(n) for n = 1..5000
Programs
-
GAP
Filtered(List([1..120],n->24*n-1),IsPrime); # Muniru A Asiru, Mar 04 2018
-
Maple
select(isprime,[seq(24*n-1,n=1..120)]); # Muniru A Asiru, Mar 04 2018
-
Mathematica
Select[Prime[Range[1000]],Mod[ #,24]==23&] Select[24*Range[200]-1,PrimeQ] (* Harvey P. Dale, Jun 17 2018 *)
-
PARI
lista(nn) = for(k=1, nn, if(isprime(p=24*k-1), print1(p", "))) \\ Altug Alkan, Mar 04 2018
Comments