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”).

A377248
Numbers k such that 8191 * 2^k + 1 is prime.
0
12, 20, 412, 712, 2092, 4704, 10176, 33396, 41124, 105604, 139780, 142924
OFFSET
1,1
COMMENTS
8191 is the 5th Mersenne prime: 8191 = 2^13 - 1 (a term of A000668).
EXAMPLE
12 is a term, because 8191 * 2^12 + 1 = 8191 * 4096 + 1 = 33550337 is prime. (also a term of A061644).
PROG
(PARI) is(k) = isprime(8191 * 2^k + 1);
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Arsen Vardanyan, Oct 21 2024
EXTENSIONS
a(8)-a(9) from Hugo Pfoertner, Oct 21 2024
a(10)-a(12) from Michael S. Branicky, Nov 05 2024
STATUS
approved