login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Least number k such that n!/k + 1 and n!/k - 1 are twin primes.
1

%I #11 May 18 2015 16:21:29

%S 1,2,2,3,12,12,48,8,5,54,44,6,24,39,6,81,20,30,19,25,380,28,264,50,52,

%T 250,35,385,20,77,182,405,77,605,143,720,144,722,96,713,46,403,98,

%U 4508,90,77,560,806,64,665,2376,1785,893,1235,4278,159,66,1326,1806,429,475

%N Least number k such that n!/k + 1 and n!/k - 1 are twin primes.

%H Giovanni Resta, <a href="/A240133/b240133.txt">Table of n, a(n) for n = 3..350</a>

%e 6!/1-1 (719) and 6!/1+1 (721) are not both prime. 6!/2-1 (359) and 6!/2+1 (361) are not both prime. 6!/3-1 (239) and 6!/3+1 (241) are both prime. thus, a(6) = 3.

%t lnk[n_]:=Module[{nf=n!,k=1},While[!AllTrue[nf/k+{1,-1},PrimeQ],k++];k]; Array[lnk,70,3] (* The program uses the AllTrue function from Mathematica version 10 *) (* _Harvey P. Dale_, May 18 2015 *)

%o (PARI) f(n)=for(k=1,n!,if(floor(n!/k-1)==n!/k-1 && floor(n!/k+1)==n!/k+1,if(ispseudoprime(n!/k-1) && ispseudoprime(n!/k+1),return(k))))

%Y Cf. A212281, A212282.

%K nonn

%O 3,2

%A _Derek Orr_, Apr 02 2014