OFFSET
0,3
COMMENTS
Unsigned sequence satisfies a(n)=na(n-1)+b(n-1) where b(n) is defined in A009006. E.g.f. tanh(z)/(1-z). - Mario Catalani (mario.catalani(AT)unito.it), Feb 10 2003
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
FORMULA
|a(n)| ~ n! * tanh(1). - Vaclav Kotesovec, Sep 22 2013
MAPLE
G(x):= tanh(x)/(1+x): f[0]:=G(x): for n from 1 to 21 do f[n]:=diff(f[n-1], x) od: x:=0: seq(f[n], n=0..20); # Zerinvary Lajos, Apr 03 2009
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Tanh[x]/(1+x), {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Jul 18 2013 *)
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
Prior Mathematica program replaced and definition clarified by Harvey P. Dale, Jul 18 2013
STATUS
approved