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!)
A099350 Numbers k such that 4*k! - 1 is prime. 11
0, 1, 2, 3, 5, 6, 10, 11, 51, 63, 197, 313, 579, 1264, 2276, 2669, 4316, 4382, 4678 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(19) > 4570. - Jinyuan Wang, Feb 04 2020
LINKS
EXAMPLE
k = 5 is here because 4*5! - 1 = 479 is prime.
MAPLE
for n from 0 to 1000 do if isprime(4*n! - 1) then print(n) end if end do;
MATHEMATICA
For[n = 0, True, n++, If[PrimeQ[4 n! - 1], Print[n]]] (* Jean-François Alcover, Sep 23 2015 *)
PROG
(PARI) is_A099350(n)=ispseudoprime(n!*4-1) \\ M. F. Hasler, Sep 20 2015
CROSSREFS
Cf. A076680.
Sequence in context: A057546 A339514 A138587 * A337218 A306296 A351717
KEYWORD
nonn,hard,more
AUTHOR
Brian Kell, Oct 12 2004
EXTENSIONS
a(14) from Alois P. Heinz, Sep 21 2015
a(15)-a(16) from Jean-François Alcover, Sep 23 2015
a(17)-a(18) from Jinyuan Wang, Feb 04 2020
a(19) from Michael S. Branicky, May 16 2023
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 08:25 EDT 2024. Contains 371964 sequences. (Running on oeis4.)