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
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
KEYWORD
hard,more,nonn
AUTHOR
Andrew V. Sutherland, May 18 2008
EXTENSIONS
Offset corrected and a(12) added by Max Alekseyev, Aug 14 2017
a(13) from Robin Visser, Oct 21 2023
STATUS
approved