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

A323030
Numbers k such that 379*2^k+1 is prime.
0
14, 26, 30, 94, 334, 498, 714, 1446, 2086, 110994, 257734, 314070, 1453534
OFFSET
1,1
MAPLE
select(k->isprime(379*2^k+1), [$1..1000]); # Muniru A Asiru, Jan 02 2019
MATHEMATICA
Select[Range[1000], PrimeQ[379*2^# + 1] &] (* Robert Price, Jan 02 2019 *)
CROSSREFS
Sequence in context: A094163 A134837 A105583 * A005277 A079702 A235688
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Jan 02 2019
STATUS
approved