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

A100249
Antidiagonal sums of the slanted Catalan convolution table A100247.
1
1, 1, 2, 3, 6, 15, 29, 63, 160, 333, 749, 1914, 4135, 9490, 24335, 53791, 125104, 321521, 721887, 1694914, 4362855, 9907851, 23429158, 60379623, 138320021, 328917615, 848432824, 1957091277, 4674847097, 12067450014, 27992976565
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..[2n/3]} C(n+k-[k/2], k)*(n-k-[k/2])/(n+k-[k/2]), with a(0)=1. G.f. A(x) satisfies: A(x^2) = ((1+x)/(2*x-(1-sqrt(1-4*x^3)))-(1-x)/(2*x+(1-sqrt(1+4*x^3)))).
PROG
(PARI) {a(n)=if(n==0, 1, sum(k=0, (2*n)\3, binomial(n+k-(k\2), k)*(n-k-(k\2))/(n+k-(k\2))))}
CROSSREFS
Cf. A100247.
Sequence in context: A158027 A346776 A371570 * A138477 A375278 A182240
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 09 2004
STATUS
approved