A233011 Primes of the form (2*n)! - n!^2 - 1.
19, 683, 478483199, 20921164185599
Offset: 1
Keywords
Examples
a(1)= 19: n= 2: (2*n)!- n!^2-1= 19 which is prime. a(2)= 683: n= 3: (2*n)!- n!^2-1= 683 which is prime.
Links
- K. D. Bajpai, Table of n, a(n) for n = 1..7
Programs
-
Maple
KD := proc() local a; a:=(2*n)!-n!^2-1; if isprime(a) then RETURN (a); fi; end: seq(KD(), n=1..200);
Comments