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

A032424
Numbers k such that 149*2^k+1 is prime.
1
3, 7, 9, 15, 17, 27, 33, 35, 57, 125, 127, 137, 191, 513, 819, 827, 921, 931, 1047, 1147, 1599, 1815, 2499, 2995, 8151, 11403, 22783, 29841, 30201, 85935, 142281, 149831, 184457, 221595, 256099, 283881, 333933, 483045, 658917, 714199, 812719, 1295061, 1561951
OFFSET
1,1
COMMENTS
The subsequence of prime values starts 3, 7, 17, 127, 137, 191, 827, 22783, 714199, ... - Muniru A Asiru, Apr 29 2019
MAPLE
select(k->isprime(149*2^k+1), [$0..1000])[]; # Muniru A Asiru, Dec 18 2018
MATHEMATICA
Select[Range[1000], PrimeQ[149*2^# + 1] & ] (* Robert Price, Dec 18 2018 *)
PROG
(PARI) is(n)=ispseudoprime(149*2^n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A178207 A210532 A110872 * A280861 A287264 A187108
KEYWORD
nonn,more
EXTENSIONS
Extended by Hugo Pfoertner, Jul 02 2003
a(33)-a(43) from the Ray Ballinger and Wilfrid Keller link by Robert Price, Dec 18 2018
STATUS
approved