login
A053357
Numbers k such that 281*2^k + 1 is prime.
0
1, 7, 9, 11, 33, 81, 113, 143, 185, 227, 359, 393, 631, 1123, 1273, 1351, 3721, 4753, 6617, 9281, 12539, 12961, 19513, 23497, 29695, 33361, 88153, 150751, 448129, 456377, 563713, 612083, 935999, 1041641, 2051865, 2363327
OFFSET
1,2
MATHEMATICA
Select[Range[5*10^3], PrimeQ[281*2^# + 1] &] (* G. C. Greubel, May 24 2018 *)
PROG
(PARI) is(n)=ispseudoprime(281*2^n+1) \\ Charles R Greathouse IV, Jun 13 2017
(Magma) [n: n in [1..300] | IsPrime(281*2^n+1)]; // G. C. Greubel, May 24 2018
CROSSREFS
Sequence in context: A317633 A259045 A029611 * A029634 A023180 A029474
KEYWORD
hard,nonn,more
AUTHOR
N. J. A. Sloane, Dec 29 1999
EXTENSIONS
a(28)-a(34) from the Ray Ballinger and Wilfrid Keller link by Robert Price, Dec 20 2018
a(35) from Jeppe Stig Nielsen, Apr 04 2020
Missed (due to lack of double checking of calculation results by PrimeGrid in 2013) term 2051865 inserted as new a(35) by Jeppe Stig Nielsen, Mar 08 2022
STATUS
approved