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!)
A230061 Primes of the form Catalan(n)+1. 4
2, 3, 43, 58787, 4861946401453, 337485502510215975556783793455058624701, 4180080073556524734514695828170907458428751314321, 1000134600800354781929399250536541864362461089950801, 944973797977428207852605870454939596837230758234904051 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The 25th term a(25) in the sequence has 693 digits.
a(26) has 1335 digits; a(27) has 1647 digits; a(28) has 1694 digits; a(29) has 2554 digits; a(30) has 4857 digits; a(31) has 4876 digits; a(32) has 9641 digits. - Charles R Greathouse IV, Oct 09 2013
LINKS
Chris K. Caldwell and G. L. Honaker,Jr., Prime Curios! 4250
EXAMPLE
a(3)= 43: Catalan(5)= (2*5)!/(5!*(5+1)!)= 42. Catalan(5)+1= 43 which is prime.
a(4)= 58787: Catalan(11)= (2*11)!/(11!*(11+1)!)= 58786. Catalan(11)+1= 58787 which is prime.
MAPLE
KD:= proc() local a, b, c; a:= (2*n)!/(n!*(n + 1)!); b:=a+1; if isprime(b) then return(b): fi; end: seq(KD(), n=1..50);
MATHEMATICA
Select[CatalanNumber[Range[100]]+1, PrimeQ] (* Harvey P. Dale, Aug 26 2021 *)
PROG
(PARI) for(n=1, 1e3, if(ispseudoprime(t=binomial(2*n, n)/(n+1)+1), print1(t", "))) \\ Charles R Greathouse IV, Oct 08 2013
CROSSREFS
Cf. A053429 (numbers n such that Catalan(n)+1 is prime).
Sequence in context: A233314 A062581 A077520 * A100015 A317672 A352003
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Oct 08 2013
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)