[go: up one dir, main page]

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”).

A010758
Sum along upward diagonal of Pascal triangle from (but not including) halfway point.
3
0, 0, 1, 2, 1, 3, 7, 14, 11, 25, 51, 97, 92, 189, 365, 674, 709, 1383, 2587, 4685, 5270, 9955, 18228, 32551, 38403, 70954, 127921, 226007, 276408, 502415, 895103, 1568062, 1972851, 3540913, 6249235, 10871723, 13996408, 24868131, 43551364, 75326395, 98847749
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k = 1 + floor(n/4)..floor(n/2)} binomial(n - k, k). - Sean A. Irvine, Jun 09 2018
PROG
(PARI) a(n) = sum(k=n\4+1, n\2, binomial(n-k, k)); \\ Seiichi Manyama, Feb 10 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved