A118813 Primes of the form (2n)! - n! - 1.
3628679, 87178286159, 20922789847679, 265252859812191058635000805631999
Offset: 1
Keywords
Examples
For n=5, (2*5)! - 5! - 1 = 3628800 - 120 - 1 = 3628679, which is prime.
References
- G. Balzarotti and P. P. Lava, Le sequenze di numeri interi, Hoepli, 2008, p. 159.
Links
- Rick L. Shepherd, Table of n, a(n) for n = 1..6
Programs
-
Maple
PFACT:=proc(N) local i,r; for i from 1 by 1 to N do r:=(2*i)!-i!-1; if isprime(r) then print(i); fi; od; end: PFACT(100);
Comments