[go: up one dir, main page]

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!)
A111018 Indices of Catalan numbers that are divisible by 3. 2
5, 6, 7, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 32, 33, 34, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 86, 87, 88, 95, 96, 97, 98, 99, 100 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: The sequence contains all numbers n such that n and n+1 are both in the sequence A074940, or, equivalently, such that neither n nor n+1 is in the sequence A005836. - L. Edson Jeffery, Dec 02 2015
The asymptotic density of this sequence is 1 (Burns, 2016). - Amiram Eldar, Jan 26 2021
LINKS
Rob Burns, Asymptotic density of Catalan numbers modulo 3 and powers of 2, arXiv:1611.03705 [math.NT], 2016.
MATHEMATICA
Flatten[Position[CatalanNumber[Range[100]], _?(Divisible[#, 3]&)]] (* Harvey P. Dale, Oct 25 2011 *)
Select[Range@100, Divisible[CatalanNumber@#, 3]&] (* Vladimir Reshetnikov, Nov 06 2015 *)
PROG
(PARI) for(n=0, 1e3, if(binomial(2*n, n)/(n+1) % 3 == 0, print1(n, ", "))) \\ Altug Alkan, Dec 02 2015
(Magma) [n: n in [1..200] | Binomial(2*n, n) div (n+1) mod 3 eq 0]; // Vincenzo Librandi, Dec 03 2015
CROSSREFS
Cf. A000108.
Sequence in context: A031029 A134985 A371029 * A326132 A342630 A347807
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 09 2005
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 August 30 07:09 EDT 2024. Contains 375532 sequences. (Running on oeis4.)