login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A032421
Numbers k such that 143*2^k+1 is prime.
0
53, 77, 293, 333, 393, 809, 825, 20973, 85349, 270285, 459093, 699189, 859769, 1650689
OFFSET
1,1
MATHEMATICA
Select[Range[1000], PrimeQ[143*2^# + 1] & ] (* Robert Price, Dec 18 2018 *)
PROG
(PARI) is(n)=ispseudoprime(143*2^n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A039389 A043212 A043992 * A129257 A125875 A059245
KEYWORD
nonn,hard,more
EXTENSIONS
a(10)-a(14) from the Ray Ballinger and Wilfrid Keller link by Robert Price, Dec 18 2018
STATUS
approved