A165210 Primes of the form (6^m - 1)/5.
7, 43, 55987, 7369130657357778596659, 3546245297457217493590449191748546458005595187661976371
Offset: 1
Keywords
Examples
a(2) = (6^A004062(2) - 1)/5 = (6^3 - 1)/5 = 215/5 = 43, which is 111_6.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..9
Programs
-
Magma
[a: n in [1..200] | IsPrime(a) where a is (6^n-1) div 5 ]; // Vincenzo Librandi, Dec 09 2011
-
Mathematica
Select[Table[(6^n-1)/5, {n,0,2000}], PrimeQ] (* Vincenzo Librandi, Dec 09 2011 *)
Formula
a(n) = (6^A004062(n) - 1)/5.
Comments