login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Expansion of cosh(tan(x)*x).
1

%I #12 Jan 24 2015 08:09:37

%S 1,0,12,240,9296,558720,47965632,5537249536,823842474240,

%T 153119256219648,34710583399132160,9416311849673895936,

%U 3009741915237844832256,1118809461121375449088000

%N Expansion of cosh(tan(x)*x).

%F a(n) ~ (2*n)! * 2^(2*n-7/4) * exp(2*sqrt(2*n)-1/2) / (n^(3/4) * Pi^(2*n+1/2)). - _Vaclav Kotesovec_, Jan 24 2015

%t Cosh[ Tan[ x ]*x ] (* Even Part *)

%t nn = 20; Table[(CoefficientList[Series[Cosh[x*Tan[x]], {x, 0, 2*nn}], x] * Range[0, 2*nn]!)[[n]], {n, 1, 2*nn+1, 2}] (* _Vaclav Kotesovec_, Jan 24 2015 *)

%K nonn

%O 0,3

%A _R. H. Hardin_

%E Extended and signs tested Mar 15 1997 by _Olivier Gérard_.