login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A068359
Binomial(2k,k) when the first digit of binomial(2k,k) is 1.
1
1, 12870, 184756, 10400600, 155117520, 137846528820, 126410606437752, 1946939425648112, 118264581564861424, 1832624140942590534, 112186277816662845432, 1746130564335626209832, 107507208733336176461620, 1678910486211891090247320, 103827421287553411369671120
OFFSET
1,2
MATHEMATICA
a={}; kmax=40; For[k=0, k<=kmax, k++, If[First[IntegerDigits[term = Binomial[2k, k]]]==1, AppendTo[a, term]]]; a (* Stefano Spezia, Sep 06 2022 *)
CROSSREFS
Intersection of A000984 and A131835.
Cf. A068358 (k values).
Sequence in context: A024752 A024760 A245861 * A177310 A140917 A351487
KEYWORD
easy,nonn,base
AUTHOR
Benoit Cloitre, Feb 28 2002
EXTENSIONS
a(1) = 1 inserted by Stefano Spezia, Sep 06 2022
STATUS
approved