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

A160030
Primes of the form 2^(2^n)+385.
5
389, 401, 641, 65921, 4294967681, 340282366920938463463374607431768211841
OFFSET
1,1
COMMENTS
Terms given correspond to n= 1, 2, 3, 4, 5 and 7.
Next term >= 2^2^20 + 385. - Vincenzo Librandi, Jun 07 2016
Next term >= 2^2^33 + 385. - Charles R Greathouse IV, Jun 07 2016
MATHEMATICA
Select[Table[2^(2^n) + 385, {n, 0, 20}], PrimeQ] (* Vincenzo Librandi, Jun 07 2016 *)
PROG
(PARI) g(n, m) = for(x=0, n, y=2^(2^x)+m; if(ispseudoprime(y), print1(y", ")))
(Magma) [a: n in [0..15] | IsPrime(a) where a is 2^(2^n)+385]; // Vincenzo Librandi, Jun 07 2016
CROSSREFS
Cf. similar sequences listed in A273547.
Sequence in context: A104999 A139660 A098078 * A006476 A282381 A089450
KEYWORD
nonn
AUTHOR
Cino Hilliard, Apr 30 2009
STATUS
approved