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

A224469
Primes of the form 8^n - n.
3
7, 509, 2596148429267413814265248164610011, 43556142965880123323311949751266331066323
OFFSET
1,1
COMMENTS
The next term is too big to display.
Corresponding n are given in A224471.
MAPLE
A224469:=proc(q) local n;
for n from 1 to q do if isprime(8^n-n) then print(8^n-n); fi; od; end:
A224469(100); # Paolo P. Lava, Apr 19 2013
MATHEMATICA
Select[Table[8^n - n, {n, 500}], PrimeQ] (* Alonso del Arte, Apr 06 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Apr 06 2013
STATUS
approved