login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216401 E.g.f.: arctanh(x*exp(x)). 8
1, 2, 5, 28, 209, 1806, 18997, 235544, 3322881, 52688890, 929147141, 18023207412, 381330466321, 8740727309510, 215767934510325, 5706703994412976, 160994795504231297, 4825786400923162482, 153160894479441852037, 5131078462229088189260 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: Sum_{n>=1} exp((2*n-1)*x) * x^(2*n-1) / (2*n-1).
E.g.f.: log( (1+x*exp(x)) / (1-x*exp(x)) ) / 2.
a(n) = n! * Sum_{k=0..floor((n-1)/2)} (2*k+1)^(n-2*k-2) / (n-2*k-1)!.
a(n) ~ (n-1)!/(2*LambertW(1)^n). - Vaclav Kotesovec, Feb 12 2013
EXAMPLE
E.g.f.: A(x) = x + 2*x^2/2! + 5*x^3/3! + 28*x^4/4! + 209*x^5/5! + 1806*x^6/6! + ...
such that tanh(A(x)) = x*exp(x) and
A(x) = exp(x)*x + exp(3*x)*x^3/3 + exp(5*x)*x^5/5 + exp(7*x)*x^7/7 + ...
MATHEMATICA
CoefficientList[Series[Log[(1+x*E^x)/(1-x*E^x)]/2, {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Feb 12 2013 *)
PROG
(PARI) {a(n)=n!*polcoeff(atanh(x*exp(x +x*O(x^n))), n)}
(PARI) {a(n)=n!*sum(k=0, (n-1)\2, (2*k+1)^(n-2*k-2)/(n-2*k-1)!)}
for(n=1, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A072371 A019043 A009635 * A342288 A324264 A138293
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 06 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)