A100598 Numbers k such that (prime(k)-1)! + prime(k)^8 is prime.
1, 2, 4, 5, 8, 10
Offset: 1
Examples
a(1) = 1 because (prime(1)-1)! + prime(1)^8 = (2-1)! + 2^8 = 257 is the smallest prime of that form. a(5) = 8 because (prime(8)-1)! + prime(8)^8 = (19-1)! + 19^8 = 304888344611713861001750412961 is the 5th smallest prime of that form.
Programs
-
Mathematica
lst={};Do[p=Prime[n];If[PrimeQ[(p-1)!+p^8], AppendTo[lst, n]], {n, 10^2}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 08 2008 *)
-
PARI
is(k) = ispseudoprime((prime(k)-1)! + prime(k)^8); \\ Jinyuan Wang, Apr 10 2020
Extensions
Edited by N. J. A. Sloane at the suggestion of Andrew S. Plewe, Jun 08 2007
Comments