A141544 Odd numbers k such that 2k+5 is a prime.
1, 3, 7, 9, 13, 19, 21, 27, 31, 33, 37, 39, 49, 51, 61, 63, 67, 73, 79, 81, 87, 93, 97, 103, 109, 111, 117, 123, 129, 133, 139, 151, 153, 163, 171, 177, 181, 187, 189, 207, 213, 217, 219, 229, 231, 237, 241, 243, 247, 249, 259, 271, 279, 283, 291, 297, 301, 307
Offset: 1
Keywords
Programs
-
Maple
a:=proc(n) if isprime(2*n+5) then n end if end proc: seq(a(2*n-1), n=1..170); # Emeric Deutsch, Aug 17 2008
-
Mathematica
Select[Range[1,307,2],PrimeQ[2#+5]&] (* James C. McMahon, Jul 26 2025 *)
Formula
Extensions
Extended by Emeric Deutsch, Aug 17 2008 and R. J. Mathar, Aug 18 2008
Comments