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!)
A288451 Numbers n such that !n + 7 is prime. 0
0, 3, 4, 5, 7, 10, 12, 20, 37, 52, 73, 149, 304, 540, 2135, 7112, 7436, 9357 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
At present the terms >= 2135 are only probable primes.
Expected to be finite, similar to Živković (1999).
LINKS
M. Živković, The number of primes Sum_{i=1..n} (-1)^(n-i)*i! is finite, Math. Comp. 68 (1999), no. 225, 403-409.
EXAMPLE
4 is a term, because 0! + 1! + 2! + 3! + 7 = 17 is prime.
MATHEMATICA
Do[ If[ PrimeQ[ Sum[ k!, {k, 0, n - 1} ] + 7 ], Print[ n ] ], {n, 1, 600} ]
Join[{0}, Flatten[Position[Accumulate[Range[0, 600]!]+7, _?PrimeQ]]] (* The program generates the first 14 terms. To generate more increase the Range constant, but the program may take a long time to run. *) (* Harvey P. Dale, May 21 2021 *)
PROG
(PARI) s=0; for(n=0, 600, if(ispseudoprime(s + 7), print1(n, ", ")); s+=n!)
CROSSREFS
Sequence in context: A288427 A030502 A201025 * A236384 A351741 A073957
KEYWORD
nonn,hard,more
AUTHOR
Serge Batalov, Jul 14 2017
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)