A366696 G.f. satisfies A(x) = (1 + x)^2 + x*A(x)^3.
1, 3, 10, 57, 378, 2730, 20853, 165592, 1353297, 11307168, 96148149, 829336122, 7238765532, 63816716547, 567425771478, 5082596905629, 45820260590481, 415423374916503, 3785371205061825, 34647928319586375, 318419608552433190, 2937021429784279707
Offset: 0
Keywords
Programs
-
PARI
a(n) = sum(k=0, n, binomial(2*(2*k+1), n-k)*binomial(3*k, k)/(2*k+1));
Formula
a(n) = Sum_{k=0..n} binomial(2*(2*k+1),n-k) * binomial(3*k,k)/(2*k+1).