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

A009081
E.g.f. is cos(tan(x)/cos(x)), coefficients of even powers of x.
1
1, -1, -19, -517, -18023, -587529, 19183749, 12219870323, 3379214470193, 883981857320943, 238930492488456221, 66829754023676225259, 18410558239851140719561, 4167711609283156286652647, -82954815883633697917244747, -1284116651310135986426544039581
OFFSET
0,3
COMMENTS
All coefficients of odd powers of x are zero.
LINKS
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
Sequence in context: A201711 A243784 A158583 * A057644 A283382 A196512
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved