A127703 Primes of the form 7*2^k-3 or 7*2^k+3.
11, 17, 31, 53, 59, 109, 227, 1789, 3581, 28669, 57347, 114691, 229373, 3670013, 14680067, 58720253, 117440509, 7516192771, 60129542141, 7881299347898371, 264452523040700131966973, 34662321099990647697175478269
Offset: 1
Keywords
Examples
2^5 + 2^6 + 2^7=224, then 224-3=221=semiprime 13*17 (not contributing to the sequence) or 224+3=prime 227, an entry in the sequence.
Programs
-
Mathematica
lim = 100; Union[Select[7*2^Range[lim] - 3, PrimeQ], Select[7*2^Range[lim] + 3, PrimeQ]] (* T. D. Noe, Sep 27 2011 *)
Extensions
Entries corrected by R. J. Mathar, Sep 27 2011
Comments