A124413 Numbers k such that 2*k+1, 4*k+1, 8*k+1, 16*k+1 and 32*k+1 are primes.
765, 3420, 7695, 8325, 16650, 22185, 28995, 33300, 41715, 52935, 72510, 75075, 82950, 99810, 104715, 106425, 115620, 121275, 145635, 159840, 165900, 173070, 188745, 190815, 192795, 222870, 225705, 239400, 240510, 253395, 253890, 256410
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[15*Range[20000], And @@ PrimeQ /@ ({2, 4, 8, 16, 32}*# + 1) &] (* Ray Chandler, Nov 21 2006 *)