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

A300408
Primes of the form 19*2^n + 1.
3
1217, 19457, 1337006139375617
OFFSET
1,1
COMMENTS
Next term a(4) = 19*2^366 + 1 > 10^111.
For the corresponding exponents n see A032359.
MAPLE
a:=(n, k)->`if`(isprime(k*2^n+1), k*2^n+1, NULL):
seq(a(n, 19), n=1..366);
PROG
(GAP) Filtered(List([1..500], n->19*2^n + 1), IsPrime); # Muniru A Asiru, Mar 06 2018
(PARI) lista(nn) = {for(k=1, nn, if(ispseudoprime(p=19*2^k+1), print1(p, ", "))); } \\ Altug Alkan, Mar 29 2018
KEYWORD
nonn,less
AUTHOR
Martin Renner, Mar 05 2018
STATUS
approved