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

A009103
Expansion of e.g.f. cos(x)/cos(log(1+x)).
1
1, 0, 0, -3, 11, -70, 534, -4725, 47753, -542988, 6859084, -95298995, 1444301715, -23711336922, 419190167434, -7939747234965, 160403009819921, -3442962495033400, 78246246638467512, -1877007578925506787
OFFSET
0,4
LINKS
FORMULA
a(n) ~ n! * cos(1-exp(-Pi/2)) / ((exp(Pi/2)-1) * (exp(-Pi/2)-1)^n). - Vaclav Kotesovec, Jan 22 2015
MATHEMATICA
CoefficientList[Series[Cos[x]*Sec[Log[1 + x]], {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Jan 22 2015 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(cos(x)/cos(log(1+x)))) \\ G. C. Greubel, Jul 26 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cos(x)/Cos(Log(1+x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 26 2018
CROSSREFS
Sequence in context: A018193 A121945 A009025 * A018192 A056665 A345030
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved