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”).

A009761
Expansion of e.g.f. tan(x)/cosh(sin(x)), odd powers only.
1
1, -1, 41, -673, 45457, -2687521, 313663481, -40066499905, 7520482865953, -1641264931094209, 461539011599816393, -151789031893211252065, 60285747097883123598001, -27699643878162362856467425, 14824242336112602473956467353, -9047638464118811277582522202369
OFFSET
1,3
LINKS
FORMULA
a(n) ~ (2*n-1)! * (-1)^(n+1) * 4 * Pi / ((4+Pi^2) * (log((Pi + sqrt(4 + Pi^2))/2))^(2*n)). - Vaclav Kotesovec, Jan 24 2015
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[Sech[Sin[x]]*Tan[x], {x, 0, 2*nn+1}], x] * Range[0, 2*nn+1]!)[[n]], {n, 2, 2*nn, 2}] (* Vaclav Kotesovec, Jan 24 2015 *)
PROG
(PARI) x='x+O('x^50); v=Vec(serlaplace(tan(x)/cosh(sin(x)))); vector((#v-1)\2 , n, v[2*n-1]) \\ G. C. Greubel, Feb 12 2018
CROSSREFS
Sequence in context: A268748 A143010 A009730 * A118448 A298459 A163039
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
Changed offset to 1 by Vaclav Kotesovec, Jan 24 2015
STATUS
approved