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

A131430
Row sums of triangle A131429.
2
1, 2, 7, 25, 88, 311, 1114, 4050, 14917, 55528, 208459, 787920, 2994655, 11433998, 43824437, 168520201, 649840740, 2512011359, 9731179138, 37768570827, 146833956266, 571711568905, 2229035221824, 8701426599353, 34005503702176, 133030452858279, 520905732440782
OFFSET
0,2
LINKS
FORMULA
a(n) = binomial(2*n, n) - (n+1) + Sum_{k=0..n} binomial(2*k, k)/(k+1). - Andrew Howroyd, Aug 28 2018
EXAMPLE
a(3) = 25 = sum of row 3 terms of triangle A131429: (5 + 5 + 6 + 9).
PROG
(PARI) a(n)={binomial(2*n, n) - n - 1 + sum(k=0, n, binomial(2*k, k)/(k+1))} \\ Andrew Howroyd, Aug 28 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Jul 10 2007
EXTENSIONS
Terms a(10) and beyond from Andrew Howroyd, Aug 28 2018
STATUS
approved