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!)
A111019 Indices of Catalan numbers that are == 1 mod 3 (cf. A000108). 1
1, 11, 12, 13, 29, 30, 31, 35, 36, 37, 83, 84, 85, 89, 90, 91, 107, 108, 109, 119, 120, 121, 245, 246, 247, 251, 252, 253, 269, 270, 271, 281, 282, 283, 323, 324, 325, 335, 336, 337, 353, 354, 355, 359, 360, 361, 731, 732, 733, 737, 738, 739, 755 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(3k) = a(3k-1)+1 and a(3k+1) = a(3k-1)+2 for k >= 1. - Robert Israel, Jun 30 2020
MAPLE
filter:= proc(n) local L1, L2, L3;
L1:= convert(2*n, base, 3);
L2:= convert(n, base, 3);
L3:= convert(n-1, base, 3);
mul(binomial(L1[i], L2[i]), i=1..nops(L2)) - mul(binomial(L1[i], L3[i]), i=1..nops(L3)) mod 3 = 1
end proc:
select(filter, [$1..1000]); # Robert Israel, Jun 30 2020
MATHEMATICA
Flatten[Position[CatalanNumber[Range[1000]], _?(Mod[#, 3]==1&)]] (* Harvey P. Dale, Jun 19 2014 *)
CROSSREFS
Sequence in context: A185300 A097932 A031300 * A306583 A048035 A048015
KEYWORD
nonn,look
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 April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)