login
A053357
Numbers k such that 281*2^k + 1 is prime.
1
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, 3151457, 3798465, 3926467, 4879761
OFFSET
1,2
LINKS
Jeppe Stig Nielsen, Table of n, a(n) for n = 1..41
Ray Ballinger and Wilfrid Keller, List of primes k.2^n + 1 for k < 300
Chris Caldwell, The Prime Pages: 281*2^2051865 + 1 (term that was missed in 2013 and only discovered in 2022)
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
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
a(37)-a(40) from Jeppe Stig Nielsen, Dec 21 2024
STATUS
approved