OFFSET
0,6
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..448
FORMULA
a(n) ~ (n-1)! * (-1)^(n+1) / cosh(tan(1)). - Vaclav Kotesovec, Jan 23 2015
MATHEMATICA
With[{m=25}, CoefficientList[Series[Log[1+x]/Cosh[Tan[x]], {x, 0, m}], x]*Range[0, m]!] (* modified by G. C. Greubel, Sep 06 2023 *)
CoefficientList[Series[Log[1 + x]*Sech[Tan[x]], {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Jan 23 2015 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Rationals(), 30);
[0] cat Coefficients(R!(Laplace( Log(1+x)/Cosh(Tan(x)) ))); // G. C. Greubel, Sep 06 2023
(SageMath)
def A009433_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( log(1+x)/cosh(tan(x)) ).egf_to_ogf().list()
A009433_list(40) # G. C. Greubel, Sep 06 2023
(PARI) my(x='x+O('x^30)); concat([0], Vec(serlaplace(log(1+x)/cosh(tan(x))))) \\ Joerg Arndt, Sep 06 2023
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved