OFFSET
1,1
COMMENTS
I.e., numbers n such that (2*n)!/(n!)^2-1 is prime. - Hugo Pfoertner, Sep 25 2005
The next term is > 30000. - Vaclav Kotesovec, May 03 2021
a(55) > 100000. - Robert Price, Jul 02 2024
MATHEMATICA
Do[ If[ PrimeQ[ Binomial[2n, n] - 1], Print[n]], {n, 1, 2000} ]
PROG
(PARI) is(n)=isprime(binomial(2*n, n)-1) \\ Charles R Greathouse IV, Feb 17 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 15 2002
EXTENSIONS
More terms from Ed Pegg Jr, Sep 10 2003
Edited by N. J. A. Sloane, Aug 23 2008 at the suggestion of R. J. Mathar
a(43)-a(44) from Vaclav Kotesovec, May 03 2021
a(45)-a(54) from Robert Price, Jul 02 2024
STATUS
approved