The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A168402 E.g.f.: Sum_{n>=0} tanh(2^n*x)^n/n!. 4
1, 2, 16, 496, 63488, 32899584, 68048945152, 560546063546368, 18415227534711980032, 2416302301874471529480192, 1267360472364492854214927581184, 2658246833130441862918267501949222912 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = [x^n/n! ] exp(2^n*tanh(x)).
a(n) ~ 2^(n^2). - Vaclav Kotesovec, Oct 11 2020
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 16*x^2/2! + 496*x^3/3! + 63488*x^4/4! +...
A(x) = 1 + tanh(2*x) + tanh(4*x)^2/2! + tanh(8*x)^3/3! + tanh(16*x)^4/4! +...+ tanh(2^n*x)^n/n! +...
a(n) = coefficient of x^n/n! in G(x)^(2^n) where G(x) = exp(tanh(x)):
G(x) = 1 + x + x^2/2! - x^3/3! - 7*x^4/4! - 3*x^5/5! + 97*x^6/6! + 275*x^7/7! +...+ A003723(n)*x^n/n! +...
MATHEMATICA
nmax = 15; CoefficientList[Series[Sum[Tanh[2^k*x]^k/k!, {k, 0, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 11 2020 *)
PROG
(PARI) {a(n)=n!*polcoeff(sum(k=0, n, tanh(2^k*x +x*O(x^n))^k/k!), n)}
(PARI) {a(n)=n!*polcoeff(exp(2^n*tanh(x +x*O(x^n))), n)}
CROSSREFS
Cf. A003723 (exp(tanh x)), variant: A136632.
Sequence in context: A012458 A012171 A068472 * A168406 A140310 A168403
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 25 2009
EXTENSIONS
Example corrected by Paul D. Hanna, Nov 25 2009
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 May 13 20:33 EDT 2024. Contains 372522 sequences. (Running on oeis4.)