OFFSET
0,4
REFERENCES
L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 226, 7th line of table.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..250
FORMULA
a(n) = b(2*n) where b(n) = ((-1)^n+1)/4*Sum(k=1..n/2, ((Sum(j=1..k,((Sum(i=0..j,(j-2*i)^n*binomial(j,i)))*(-1)^(k-j)*binomial(k,j) )/2^(j)))*(1-(-1)^k)/(k!))). - Vladimir Kruchinin, Apr 23 2011
MATHEMATICA
With[{nn = 50}, CoefficientList[Series[Sinh[Cosh[x] - 1], {x, 0, nn}], x] Range[0, nn]!][[1 ;; ;; 2]] (* G. C. Greubel, Jan 29 2018 *)
PROG
(Maxima)
a(n):=b(2*n);
b(n):=((-1)^n+1)/4*sum(((sum(((sum((j-2*i)^n*binomial(j, i), i, 0, j))*(-1)^(k-j)*binomial(k, j))/2^(j), j, 1, k))*(1-(-1)^k)/(k!)), k, 1, n/2);
/* Vladimir Kruchinin, Apr 23 2011 */
(PARI) x='x+O('x^50); v=Vec(serlaplace(sinh(cosh(x)-1))); concat([0], vector(#v\2, n, v[2*n-1])) \\ G. C. Greubel, Jan 29 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 28 2001
STATUS
approved