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!)
A009436 Expansion of e.g.f. log(1+x)/exp(sin(x)). 3
0, 1, -3, 8, -20, 59, -261, 1665, -12368, 99945, -888961, 8802045, -96423788, 1154791637, -14982150197, 209295667833, -3133083877248, 50039962416625, -849332973526881, 15266142375582901, -289679348425382572 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ (n-1)! * (-1)^(n+1) * exp(sin(1)). - Vaclav Kotesovec, Jan 23 2015
MATHEMATICA
With[{m=30}, CoefficientList[Series[Log[1+x]/E^Sin[x], {x, 0, m}], x]*Range[0, m]!] (* Vaclav Kotesovec, Jan 23 2015 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Rationals(), 30);
[0] cat Coefficients(R!(Laplace( Log(1+x)*Exp(-Sin(x)) ))); // G. C. Greubel, Sep 08 2023
(SageMath)
def A009436_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( log(1+x)*exp(-sin(x)) ).egf_to_ogf().list()
A009436_list(31) # G. C. Greubel, Sep 08 2023
CROSSREFS
Sequence in context: A122228 A018790 A268042 * A354519 A302674 A108189
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
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 April 16 07:57 EDT 2024. Contains 371698 sequences. (Running on oeis4.)