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!)
A140602 Values of m for which C(m,k)+C(m,k+1)=C(m+1,k+1) divides C(m,2k+1) for some nonnegative integer k with 2k+1 <= m. 2
34, 89, 104, 359, 398, 2309, 2729, 3539, 4619, 8644, 14135, 36569, 255959 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A140601 which is the main entry for this sequence.
Some large terms of this sequence: 255959 (k=47), 618799 (k=25). - Max Alekseyev, Sep 19 2015
LINKS
EXAMPLE
a(1)=34 because C(34,6) + C(34,7) = 1344904 + 5379616 = 6724520 divides C(34,13) = 927983760.
PROG
(Sage)
for m in range(100000):
for a in range(0, m//2):
if (binomial(m, 2*a+1)%binomial(m+1, a+1) == 0):
print(m); break # Robin Visser, Oct 21 2023
CROSSREFS
Sequence in context: A086005 A169834 A248201 * A067977 A183311 A282811
KEYWORD
hard,more,nonn
AUTHOR
EXTENSIONS
Offset corrected and a(12) added by Max Alekseyev, Aug 14 2017
a(13) from Robin Visser, Oct 21 2023
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 3 11:10 EDT 2024. Contains 374885 sequences. (Running on oeis4.)