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!)
A090531 Least multiple of n! sandwiched between twin primes, or 0 if no such number exists. 2
4, 4, 6, 72, 240, 12240, 35280, 241920, 1088640, 50803200, 1157587200, 14370048000, 298896998400, 2353813862400, 11769069312000, 502146957312000, 4268249137152000, 621030249455616000, 9488317831888896000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: No term is zero.
This conjecture is implied by Dickson's conjecture. - Robert Israel, Feb 13 2018
LINKS
FORMULA
a(n) = A071256(A000142(n)). - Robert Israel, Feb 13 2018
MAPLE
f := proc (n) local k, t; t := factorial(n); for k from t by t do if isprime(k-1) and isprime(k+1) then return k end if end do end proc;
map(f, [`$`(1 .. 20)]); # Robert Israel, Feb 13 2018
MATHEMATICA
lmn[n_]:=Module[{k=n!, m=1}, While[AnyTrue[k*m+{1, -1}, CompositeQ], m++]; k*m]; Join[{4, 4}, Array[lmn, 20, 3]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jan 27 2020 *)
CROSSREFS
Sequence in context: A261146 A368304 A365063 * A350581 A356686 A198138
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Dec 07 2003
EXTENSIONS
More terms from Ryan Propper, Jun 16 2005
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)