A344516 Numbers k such that (2^k-5, 2^k-3) are twin primes.
3, 4, 6, 10, 12, 20, 150
Offset: 1
Examples
3 is a term since (2^3-5, 2^3-3) = (3, 5) are twin primes.
Links
- G. L. Honaker, Jr. and Chris K. Caldwell, Prime Curios! 150.
Programs
-
Mathematica
Select[Range[150], And @@ PrimeQ[2^# - {3,5}] &]
Comments