OFFSET
1,1
COMMENTS
After 11 and 9029, there are no prime values of a(n) through 7^109 - 6^109 - 2.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..100
FORMULA
EXAMPLE
543605 is in the sequence because 543605 = 7^7 - 6^7 - 2, and 7 is prime.
MATHEMATICA
Table[7^p - 6^p - 2, {p, Prime[Range[20]]}] (* T. D. Noe, Mar 15 2012 *)
PROG
(PARI) forprime(p=2, 100, print1(7^p-6^p-2", ")) \\ Charles R Greathouse IV, Mar 15 2012
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Jonathan Vos Post, Mar 14 2012
STATUS
approved