OFFSET
0,4
COMMENTS
|a(n)| = number of cycles in all permutations of [n] with odd number of cycles. - Vladeta Jovovic, Sep 06 2007
a(n) is a function of the harmonic numbers. - Gary Detlefs, Jul 13 2010
LINKS
Robert Israel, Table of n, a(n) for n = 0..411
FORMULA
a(n) = (-1)^(n+1)/2*(n!*H(n)-(n-2)!), n> 1, where H(n) = sum(1/k, k=1..n). - Gary Detlefs, Jul 13 2010
MAPLE
H:= n-> sum(1/k, k=1..n): seq((-1)^(n+1)/2*(n!*H(n)-(n-2)!), n = 2..20); # Gary Detlefs, Jul 13 2010
MATHEMATICA
Log[ 1+x ]*Cosh[ Log[ 1+x ] ]
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved