login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A100602 Numbers k such that (prime(k)-1)! + prime(k)^5 is prime. 1
6, 8, 11, 17, 2286 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
k = {6, 8, 11, 17} yields primes p(k) = {13, 19, 31, 59}. There are no more such k up to k=100. Computed in collaboration with Ray Chandler.
a(5) > 600. - Jinyuan Wang, Apr 10 2020
LINKS
FORMULA
Numbers k such that (prime(k)-1)! + prime(k)^5 is prime, where prime(k) is the k-th prime.
EXAMPLE
a(1) = 6 because (prime(6)-1)! + prime(6)^5 = (13-1)! + 13^5 = 479372893 is the first prime of this form.
MATHEMATICA
lst={}; Do[p=Prime[n]; If[PrimeQ[(p-1)!+p^5], AppendTo[lst, n]], {n, 10^2}]; lst (* Vladimir Joseph Stephan Orlovsky, Sep 08 2008 *)
PROG
(PARI) is(k) = ispseudoprime((prime(k)-1)! + prime(k)^5); \\ Jinyuan Wang, Apr 10 2020
CROSSREFS
Sequence in context: A048586 A080824 A183979 * A222175 A350767 A315856
KEYWORD
nonn,hard,more
AUTHOR
Jonathan Vos Post, Nov 30 2004
EXTENSIONS
a(5) from Michael S. Branicky, Jul 02 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 22 18:34 EDT 2024. Contains 375369 sequences. (Running on oeis4.)