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!)
A240622 Least number k such that k!/n - 1 is prime. 1
3, 3, 4, 4, 5, 4, 7, 4, 6, 5, 15, 6, 13, 7, 5, 9, 38, 8, 21, 5, 7, 19, 27, 6, 15, 14, 10, 7, 30, 5, 31, 8, 12, 18, 8, 6, 47, 53, 13, 5, 127, 10, 67, 11, 16, 27, 51, 8, 14, 26, 17, 16, 77, 9, 23, 7, 184, 56, 123, 6, 66, 203, 7, 9, 13, 13, 74, 42, 26, 7, 75, 9, 205 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(263) > 5000. - Jinyuan Wang, Mar 31 2020
LINKS
EXAMPLE
1!/1 - 1 = 0 is not prime. 2!/1 - 1 = 1 is not prime. 3!/1 - 1 = 5 is prime. Thus, a(1) = 3.
MATHEMATICA
lnk[n_]:=Module[{k=1}, While[!PrimeQ[k!/n-1], k++]; k]; Array[lnk, 80] (* Harvey P. Dale, Aug 31 2015 *)
PROG
(PARI) a(n) = {for(k=1, oo, s=k!/n-1; if(floor(s)==s, if(ispseudoprime(s), return(k)))); }
CROSSREFS
Sequence in context: A058729 A021303 A303821 * A364883 A130250 A130253
KEYWORD
nonn
AUTHOR
Derek Orr, Apr 09 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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)