OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..425
FORMULA
a(n) ~ n! * 2^(2*n+1) * (exp(Pi/4) + (-1)^n*exp(-Pi/4)) / Pi^(n+1). - Vaclav Kotesovec, Aug 04 2014
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x]Sec[2x], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Dec 13 2011 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Rationals(), 30); Coefficients(R!(Laplace( Exp(x)*Sec(2*x) ))); // G. C. Greubel, May 31 2021
(Sage) [factorial(n)*( exp(x)*sec(2*x) ).series(x, n+1).list()[n] for n in (0..30)] # G. C. Greubel, May 31 2021
(PARI) my(x='x+O('x^30)); Vec(serlaplace(exp(x)/cos(2*x))) \\ Michel Marcus, Jun 01 2021
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Mar 16 2006
STATUS
approved