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

A379329
G.f. A(x) satisfies A(x) = 1/sqrt( (1 - 2*x) * (1 - 2*x*A(x)) ).
2
1, 2, 6, 22, 92, 420, 2034, 10262, 53330, 283410, 1532698, 8406698, 46650072, 261416000, 1477208374, 8407900890, 48158339716, 277375020772, 1605477915982, 9333727605762, 54478721494436, 319120526072380, 1875410643820166, 11054224586789010, 65334486288626586, 387118590382759994
OFFSET
0,2
FORMULA
a(n) = 2^n * Sum_{k=0..n} binomial(n/2+k/2+1/2,k) * binomial(3*n/2-3*k/2-1/2,n-k)/(n+k+1).
PROG
(PARI) a(n) = 2^n*sum(k=0, n, binomial(n/2+k/2+1/2, k)*binomial(3*n/2-3*k/2-1/2, n-k)/(n+k+1));
CROSSREFS
Sequence in context: A150273 A342292 A303923 * A264868 A342290 A374549
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Dec 21 2024
STATUS
approved