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

A209901
7^p - 6^p - 2 with p = prime(n).
1
11, 125, 9029, 543605, 1614529685, 83828316389, 215703854542469, 10789535445362645, 26579017117027313525, 3183060102526390833854309, 156448938516521406467644085, 18500229372226631089176131976869, 44487435359130133495783012898708549
OFFSET
1,1
COMMENTS
After 11 and 9029, there are no prime values of a(n) through 7^109 - 6^109 - 2.
LINKS
FORMULA
a(n) = A016169(A000040(n)) - 2 = A204768(n) - 1 = A000420(A000040(n)) - A000400(A000040(n)) - 2.
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