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

A009125
Expansion of e.g.f. cosh(log(1+tan(x))).
2
1, 0, 1, -3, 20, -120, 976, -8568, 88640, -1011840, 12933376, -180964608, 2767631360, -45799004160, 816582578176, -15594628021248, 317710534983680, -6876762625966080, 157606194409701376, -3812723805066559488
OFFSET
0,4
LINKS
FORMULA
E.g.f.: cosh(log(1+tan(x))).
a(n) ~ n! * (-1)^n * 4^n / Pi^(n+1). - Vaclav Kotesovec, Jan 22 2015
MATHEMATICA
CoefficientList[Series[(1 + (1 + Tan[x])^2)/(2*(1 + Tan[x])), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Jan 22 2015 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(cosh(log(1+tan(x))))) \\ G. C. Greubel, Jul 28 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cosh(Log(1+Tan(x))))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 28 2018
CROSSREFS
Sequence in context: A037788 A037669 A228066 * A037795 A325890 A323563
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved