A366266 G.f. A(x) satisfies A(x) = 1 + x + x*A(x)^3.
1, 2, 6, 30, 170, 1050, 6846, 46374, 323154, 2301618, 16680246, 122607342, 911868282, 6849381194, 51885977838, 395941193718, 3040818657954, 23485437201762, 182297207394150, 1421357996034750, 11126867651367498, 87421958424703098, 689130671539597854
Offset: 0
Keywords
Programs
-
PARI
a(n) = sum(k=0, n, binomial(2*k+1, n-k)*binomial(3*k, k)/(2*k+1));