The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A009438 Expansion of e.g.f. log(1+x)/exp(tan(x)). 3
0, 1, -3, 8, -32, 149, -831, 5340, -38744, 316161, -2846611, 28263960, -305651048, 3593550245, -45584631743, 622159233948, -9091059243792, 141783419182561, -2351573180823939, 41355560621409352, -768924714448510480 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ (n-1)! * (-1)^(n+1) * exp(tan(1)). - Vaclav Kotesovec, Jan 23 2015
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Log[1+x]/Exp[Tan[x]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jan 28 2014 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Rationals(), 30);
[0] cat Coefficients(R!(Laplace( Log(1+x)*Exp(-Tan(x)) ))); // G. C. Greubel, Sep 08 2023
(SageMath)
def A009438_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( log(1+x)*exp(-tan(x)) ).egf_to_ogf().list()
A009438_list(31) # G. C. Greubel, Sep 08 2023
CROSSREFS
Sequence in context: A103939 A094610 A064316 * A321520 A321522 A328053
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
Prior Mathematica program corrected by Harvey P. Dale, Jan 28 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 17 07:44 EDT 2024. Contains 372579 sequences. (Running on oeis4.)