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

A104071
Primes of the form 2^k + 27.
2
29, 31, 43, 59, 283, 1051, 8219, 16411, 65563, 1099511627803, 2199023255579, 17592186044443, 77371252455336267181195291, 1298074214633706907132624082305051
OFFSET
1,1
FORMULA
a(n) = 2^A157007(n) + 27. - Elmo R. Oliveira, Nov 08 2023
MATHEMATICA
a = Delete[Union[Flatten[Table[If [PrimeQ[2^n + 27] == True, 2^n + 27, 0], {n, 1, 400}]]], 1]
PROG
(Magma) [ a: n in [0..750] | IsPrime(a) where a is 2^n+27]; // Vincenzo Librandi, Nov 13 2010
CROSSREFS
Sequence in context: A102906 A178456 A069453 * A288616 A273547 A132240
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Mar 02 2005
STATUS
approved