A139187 Smallest twin prime member A001359 of the form k!/n-1.
5, 11, 239, 5, 7983359, 3
Offset: 1
Examples
For n=1, the smallest k is 3, where (3!/1-1,3!/1+1) = (5,7) = (A001359(2),A006512(2)). For n=3, the smallest k is 6, where (6!/3-1,6!/3+1) = (239,241) = (A001359(17),A006512(17)).
Programs
-
Mathematica
a = {}; Do[k = 1; While[ ! (PrimeQ[(k! - n)/n] && PrimeQ[(k! + n)/n]), k++ ]; AppendTo[a, (k! - n)/n], {n, 1, 6}]; a
Comments