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!)
A215913 Primes of the form 2*!n-1. 0
3, 17, 352429681, 4581585863 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
!n is a subfactorial number (A000166). The corresponding n are {3, 4, 12, 13, 97,...}.
LINKS
EXAMPLE
The prime 17 = 2* !4 - 1 = 2*9 -1 is in the sequence.
MAPLE
with(numtheory): f:=n->sum(n!*(((-1)^k)*1/k!), k=0..n):for n from 1 to 150 do: if type(2*f(n)-1, prime) = true then printf(`%d, `, 2*f(n)-1):else fi:od:
MATHEMATICA
a={}; Do[p= 2* Subfactorial[n]-1; If[PrimeQ[p], AppendTo[a, p]], {n, 0, 800}]; Print[a];
CROSSREFS
Sequence in context: A351590 A175984 A051710 * A162713 A161473 A208493
KEYWORD
nonn
AUTHOR
Michel Lagneau, Aug 26 2012
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 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)