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!)
A245697 Least number k such that (n!+k)/n and (n!-k)/n are both prime. 3
0, 4, 25, 42, 133, 152, 279, 170, 121, 204, 1079, 938, 5295, 3632, 2771, 1062, 1159, 2260, 7413, 682, 33281, 13704, 9725, 4966, 9099, 24724, 2929, 54690, 20429, 22688, 5379, 46274, 15365, 11052, 40441, 65854, 97149, 42520, 44731, 83958, 61877, 4796, 123885, 27922, 122999, 12912, 5047 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
COMMENTS
a(n) < n! for all n > 2.
It is believed that a(n) exists for all n > 2.
a(n) = n times (least m such that (n-1)!+m and (n-1)!-m are both prime) = n*A075409(n-1). - Jens Kruse Andersen, Jul 30 2014 [Goldbach's conjecture would then imply that a(n) always exists.]
LINKS
Jens Kruse Andersen, Table of n, a(n) for n = 3..101
EXAMPLE
(4!+4)/4 = 7 is prime and (4!-4)/4 = 5 is prime. Thus a(4) = 4.
PROG
(PARI)
a(n)=for(k=0, 10^7, s1=(n!-k)/n; s2=(n!+k)/n; if(floor(s1)==s1&&floor(s2)==s2, if(ispseudoprime(s1)&&ispseudoprime(s2), return(k))))
n=3; while(n<100, print1(a(n), ", "); n++)
CROSSREFS
Sequence in context: A231176 A335350 A199772 * A089767 A337173 A135784
KEYWORD
nonn
AUTHOR
Derek Orr, Jul 29 2014
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 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)