OFFSET
0,3
COMMENTS
All coefficients of odd powers of x are zero.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..235
MATHEMATICA
With[{nn=30}, Take[CoefficientList[Series[Cos[Tan[x]/Cos[x]], {x, 0, nn}], x]Range[0, nn]!, {1, -1, 2}]] (* Harvey P. Dale, Jan 28 2012 *)
PROG
(PARI)
x='x+O('x^66); /* that many terms */
v=Vec(serlaplace(cos(tan(x)/cos(x))));
vector(#v\2, j, v[2*j-1]) /* show terms */
/* Joerg Arndt, Jan 28 2012 */
CROSSREFS
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved