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!)
A166342 Numbers n such that (n+2)*n!*Sum((-1)^k/k!),k=0..n+2 is prime. 0
2, 3, 4, 8, 13, 42, 64, 166, 573, 1711 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
No further terms up to n=20000. The sequence a[n]=(n+2)*n!*Sum((-1)^k/k!),k=0..n+2 is A000255.
LINKS
FORMULA
n is an index of the sequence a[n]=(n+2)*n!*Sum((-1)^k/k!),k=0..n+2 such that a[n] is prime.
EXAMPLE
For n=3, a[3]=11 which is prime.
PROG
(PARI) z_even=1; z_odd=1;
for(n=1, 20000,
if(n%2==1,
z_odd=(n+2)*(n-1)*z_odd+1; if((ispseudoprime(z_odd)), print(n="n)),
z_even=(n+2)*(n-1)*z_even-1; if((ispseudoprime(z_odd)), print(n="n))); );
CROSSREFS
Cf. A000255 (corresponding sequence).
Sequence in context: A361722 A092075 A091415 * A361502 A091816 A266400
KEYWORD
nonn
AUTHOR
Mike Oakes, Oct 12 2009
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 July 14 20:26 EDT 2024. Contains 374323 sequences. (Running on oeis4.)