A209901 7^p - 6^p - 2 with p = prime(n).
11, 125, 9029, 543605, 1614529685, 83828316389, 215703854542469, 10789535445362645, 26579017117027313525, 3183060102526390833854309, 156448938516521406467644085, 18500229372226631089176131976869, 44487435359130133495783012898708549
Offset: 1
Examples
543605 is in the sequence because 543605 = 7^7 - 6^7 - 2, and 7 is prime.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..100
Programs
-
Mathematica
Table[7^p - 6^p - 2, {p, Prime[Range[20]]}] (* T. D. Noe, Mar 15 2012 *)
-
PARI
forprime(p=2,100,print1(7^p-6^p-2", ")) \\ Charles R Greathouse IV, Mar 15 2012
Comments