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!)
A117141 Primes of the form n!! - 1. 51
2, 7, 47, 383, 10321919, 51011754393599, 1130138339199322632554990773529330319359999999, 73562883979319395645666688474019139929848516028923903999999999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
G. Balzarotti and P. P. Lava, Le sequenze di numeri interi, Hoepli, 2008, p. 158.
LINKS
FORMULA
a(n) = A093173(n-1) for n>1. - Alexander Adamchuk, Apr 18 2007
EXAMPLE
6!! - 1 = 6*4*2 - 1 = 48 - 1 = 47, which is prime.
8!! - 1 = 8*6*4*2 - 1 = 384 - 1 = 383, which is prime.
MAPLE
SFACT:= proc(n) local i, j, k; for k from 1 by 1 to n do i:=k; j:=k-2; while j >0 do i:=i*j; j:=j-2; od: if isprime(i-1) then print(i-1); fi; od: end: SFACT(100);
MATHEMATICA
lst={}; Do[p=n!!-1; If[PrimeQ[p], AppendTo[lst, p]], {n, 0, 5!, 1}]; lst (* Vladimir Joseph Stephan Orlovsky, Jan 27 2009 *)
Select[Table[n!!-1, {n, 1, 100}], PrimeQ] (* Vincenzo Librandi, Dec 07 2011 *)
PROG
(PARI) print1(2); for(n=1, 1e3, if(ispseudoprime(t=n!<<n-1), print1(", "t))) \\ Charles R Greathouse IV, Jun 16 2011
CROSSREFS
Cf. A093173 = primes of the form (2^n * n!) - 1.
Sequence in context: A091117 A056854 A330149 * A349965 A305533 A125813
KEYWORD
nonn
AUTHOR
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 August 24 22:45 EDT 2024. Contains 375417 sequences. (Running on oeis4.)