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

A050528
Primes of the form 9*2^n+1.
7
19, 37, 73, 577, 1153, 18433, 147457, 1179649, 77309411329, 39582418599937, 79164837199873, 83010348331692982273, 332041393326771929089, 1328165573307087716353, 21760664753063325144711169, 196002643346460554954903773880698489798657
OFFSET
1,1
MAPLE
A050528:=n->`if`(isprime(9*2^n+1), 9*2^n+1, NULL): seq(A050528(n), n=1..200); # Wesley Ivan Hurt, Aug 09 2014
MATHEMATICA
Select[9*2^Range[150]+1, PrimeQ] (* Harvey P. Dale, Aug 08 2014 *)
PROG
(Magma) [a: n in [0..150] | IsPrime(a) where a is (9*2^n+1) ]; // Vincenzo Librandi, Aug 09 2014
CROSSREFS
For more terms see A002256.
Sequence in context: A158293 A107579 A245381 * A257074 A357935 A299930
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 29 1999
STATUS
approved