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

A323113
Numbers k such that 425*2^k+1 is prime.
0
7, 27, 31, 43, 79, 169, 193, 241, 511, 987, 1273, 1807, 2671, 3327, 3409, 8469, 12691, 16465, 50595, 62155, 154323, 336465, 479187, 524997, 641553, 1048563
OFFSET
1,1
MAPLE
select(k->isprime(425*2^k+1), [$1..1000]); # Muniru A Asiru, Jan 05 2019
MATHEMATICA
Select[Range[1000], PrimeQ[425*2^# + 1] &]
CROSSREFS
Sequence in context: A166406 A243006 A175377 * A205861 A215446 A098948
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Jan 04 2019
STATUS
approved