OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..200
FORMULA
E.g.f.: ((1+T(x))/(1-T(x)))^(1/2) * Product_{i>=1} cosh(T(x)^(2*i)/(2*i)) where T(x) is the e.g.f. for A000169.
MAPLE
with(combinat):
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(`if`(irem(j, igcd(i, 2))<>0, 0, (i-1)!^j*
multinomial(n, n-i*j, i$j)/j!*b(n-i*j, i-1)), j=0..n/i)))
end:
a:= n-> add(b(j, j)*n^(n-j)*binomial(n-1, j-1), j=0..n):
seq(a(n), n=0..25); # Alois P. Heinz, Sep 08 2014
MATHEMATICA
nn=20; t=Sum[n^(n-1)x^n/n!, {n, 1, nn}]; p=Product[Cosh[t^(2i)/(2i)], {i, 1, nn}]; Range[0, nn]! CoefficientList[Series[((1+t)/(1-t))^(1/2) p, {x, 0, nn}], x]
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
Geoffrey Critzer, May 22 2012
EXTENSIONS
Maple program fixed by Vaclav Kotesovec, Sep 13 2014
STATUS
approved
