A364453 Smallest k such that 5^(5^n) - k is prime.
2, 4, 64, 124, 228, 10978, 73738, 66346
Offset: 0
Examples
a(2) = 64 because 5^(5^2) - 64 = 298023223876953061 is prime.
Programs
-
Mathematica
lst={};Do[Do[p=5^(5^n)-k;If[PrimeQ[p],AppendTo[lst,k];Break[]],{k,2,11!}],{n,7}];lst Table[k=1;Monitor[Parallelize[While[True,If[PrimeQ[5^(5^n)-k],Break[]];k++];k],k],{n,1,7}] y[n_] := Module[{x = 5^(5^n)}, x - NextPrime[x, -1]]; Array[y, 7]
-
PARI
a(n) = my(x = 5^(5^n)); x - precprime(x);
Extensions
a(0) prepended and a(7) from Michael S. Branicky, Aug 24 2024
Comments