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

A013011
Expansion of e.g.f. log(cos(x) + tan(x)).
1
0, 1, -2, 7, -28, 185, -1352, 12367, -129568, 1558865, -21053312, 316097527, -5218724608, 94003171145, -1834214761472, 38543705698687, -867787269787648, 20840298552277025, -531768169691512832, 14366953364916735847, -409720712943913074688
OFFSET
0,3
LINKS
EXAMPLE
x - 2/2!*x^2 + 7/3!*x^3 - 28/4!*x^4 + 185/5!*x^5 ...
MATHEMATICA
With[{nn=25}, Drop[CoefficientList[Series[Log[Cos[x] + Tan[x]], {x, 0, nn}], x] Range[0, nn]!]] (* Vincenzo Librandi Jul 30 2018 *)
PROG
(PARI) x = 'x + O('x^30); concat([0], Vec(serlaplace(log(cos(x) + tan(x))))) \\ Michel Marcus, Jul 30 2018
CROSSREFS
Sequence in context: A334613 A365559 A123026 * A013181 A191478 A321181
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
a(0)=0 inserted and title improved by Sean A. Irvine, Jul 30 2018
STATUS
approved