This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A168402 #5 Oct 11 2020 04:08:56 %S A168402 1,2,16,496,63488,32899584,68048945152,560546063546368, %T A168402 18415227534711980032,2416302301874471529480192, %U A168402 1267360472364492854214927581184,2658246833130441862918267501949222912 %N A168402 E.g.f.: Sum_{n>=0} tanh(2^n*x)^n/n!. %F A168402 a(n) = [x^n/n! ] exp(2^n*tanh(x)). %F A168402 a(n) ~ 2^(n^2). - _Vaclav Kotesovec_, Oct 11 2020 %e A168402 E.g.f.: A(x) = 1 + 2*x + 16*x^2/2! + 496*x^3/3! + 63488*x^4/4! +... %e A168402 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! +... %e A168402 a(n) = coefficient of x^n/n! in G(x)^(2^n) where G(x) = exp(tanh(x)): %e A168402 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! +... %t A168402 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 *) %o A168402 (PARI) {a(n)=n!*polcoeff(sum(k=0,n,tanh(2^k*x +x*O(x^n))^k/k!),n)} %o A168402 (PARI) {a(n)=n!*polcoeff(exp(2^n*tanh(x +x*O(x^n))),n)} %Y A168402 Cf. A003723 (exp(tanh x)), variant: A136632. %K A168402 nonn %O A168402 0,2 %A A168402 _Paul D. Hanna_, Nov 25 2009 %E A168402 Example corrected by _Paul D. Hanna_, Nov 25 2009