A191623 Primes of the form 1 + Product_{k=1..n} prime(k)^(2^(k-1)).
3, 19, 11251, 2980024297506569894680811251
Offset: 1
Keywords
Examples
a(1) = 1 + 2^1 = 1 + 2 = 3 is prime. a(2) = 1 + (2^1 * 3^2) = 1 + 18 = 19 is prime. a(3) = 1 + (2^1 * 3^2 * 5^4) = 1 + 11250 = 11251 is prime.
Programs
-
Mathematica
Select[Array[1 + Product[Prime[k]^(2^(k - 1)), {k, #}] &, 5], PrimeQ] (* Michael De Vlieger, Feb 15 2020 *)
Comments