A059801 Numbers k such that 4^k - 3^k is prime.
2, 3, 7, 17, 59, 283, 311, 383, 499, 521, 541, 599, 1193, 1993, 2671, 7547, 24019, 46301, 48121, 68597, 91283, 131497, 148663, 184463, 341233
Offset: 1
Links
- Bogley, William A.; Williams, Gerald Efficient finite groups arising in the study of relative asphericity. Math. Z. 284, No. 1-2, 507-535 (2016).
Programs
-
Mathematica
Select[Range[1000], PrimeQ[4^# - 3^#] &] (* Alonso del Arte, Nov 03 2011 *)
-
PARI
select(vector(10^5,i,i),n->ispseudoprime(4^n-3^n)) \\ Charles R Greathouse IV, Feb 11 2011
Comments