The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A120624 Numbers n such that the n-th Catalan number C(2n,n)/(n+1) is divisible by 2n. 3

%I #16 Aug 30 2016 16:41:12

%S 6,28,42,45,66,77,91,110,126,140,153,156,170,187,190,204,209,210,220,

%T 228,231,238,266,276,299,308,312,315,322,325,330,345,378,414,420,429,

%U 435,440,442,450,459,460,468,476,483,493,496,510,527,551,558,561,570

%N Numbers n such that the n-th Catalan number C(2n,n)/(n+1) is divisible by 2n.

%C Equivalently, numbers such that the n-th central binomial coefficient C(2n, n) is divisible by 2n(n + 1). - _Joel B. Lewis_, Jan 07 2008

%H Chai Wah Wu, <a href="/A120624/b120624.txt">Table of n, a(n) for n = 1..10000</a>

%t fQ[n_] := fQ[n_] := IntegerQ[ Binomial[2n, n]/(2n(n + 1))]; Select[ Range@8719, fQ@# &]

%t Select[Range[600],Divisible[CatalanNumber[#],2#]&] (* _Harvey P. Dale_, Aug 30 2016 *)

%o (Python)

%o from __future__ import division

%o A120624_list, b = [], 1

%o for n in range(1,10**5):

%o if not b % (2*n):

%o A120624_list.append(n)

%o b = b*(4*n+2)//(n+2) # _Chai Wah Wu_, Mar 25 2016

%Y Subset of A014847.

%Y Cf. A120622.

%K nonn

%O 1,1

%A _Robert G. Wilson v_, Jun 19 2006

%E Definition corrected by _Joel B. Lewis_, Apr 30 2009

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 May 30 06:54 EDT 2024. Contains 372961 sequences. (Running on oeis4.)