A364588 G.f. satisfies A(x) = 1/(1-x) + x^2*A(x)^4.
1, 1, 2, 5, 15, 49, 170, 613, 2275, 8629, 33301, 130333, 516077, 2063685, 8321892, 33803161, 138181521, 568031297, 2346668400, 9737766513, 40569611691, 169632827345, 711611670532, 2994165070045, 12632782541053, 53433933353885, 226540298098019
Offset: 0
Programs
-
PARI
a(n) = sum(k=0, n\2, binomial(n+k, 3*k)*binomial(4*k,k)/(3*k+1));
Formula
a(n) = Sum_{k=0..floor(n/2)} binomial(n+k,3*k) * binomial(4*k,k) / (3*k+1).