A124412 Numbers k such that 2*k+1, 4*k+1, 8*k+1 and 16*k+1 are primes.
765, 1065, 1155, 1530, 3105, 3420, 3705, 5160, 6840, 7695, 8325, 9060, 11265, 11505, 12195, 14835, 15390, 15885, 16650, 17655, 20745, 22185, 23205, 27300, 28155, 28995, 30165, 30690, 33300, 33825, 39015, 41715, 42690, 44370, 48465, 49935
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[15*Range[3500], And @@ PrimeQ /@ ({2, 4, 8, 16}*# + 1) &] (* Ray Chandler, Nov 21 2006 *)