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

A193318
G.f.: Sum_{n>=0} x^n*Product_{k=1..n} (1 - (2*k-1)*x) / (1 - (2*k)*x).
1
1, 1, 2, 5, 15, 54, 229, 1111, 6020, 35873, 232677, 1629528, 12238621, 98006533, 832764146, 7477375601, 70696248123, 701636328534, 7289525389681, 79084544097475, 893993204314316, 10509131215500701, 128235999632164377, 1621637635101089040
OFFSET
0,3
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 5*x^3 + 15*x^4 + 54*x^5 + 229*x^6 +...
where
A(x) = 1 + x*(1-x)/(1-2*x) + x^2*(1-x)*(1-3*x)/((1-2*x)*(1-4*x)) + x^3*(1-x)*(1-3*x)*(1-5*x)/((1-2*x)*(1-4*x)*(1-6*x)) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, x^m*prod(k=1, m, (1-(2*k-1)*x)/(1-(2*k)*x +x*O(x^n)))), n)}
CROSSREFS
Sequence in context: A208237 A321958 A107112 * A171450 A204190 A051295
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 22 2011
STATUS
approved