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!)
A215519 n-th derivative of cosh(x)^sinh(x) at x=0. 1
1, 0, 0, 3, 0, 0, 90, 63, 0, 6240, 22680, 49203, 376200, 7076160, 60540480, -57346377, 39312000, 49503504960, 276296898240, -2899764389277, -3278565763200, 767149465779840, 3023234606367360, -114504064046714097, -92501888140886400, 30154180723807140000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: cosh(x)^sinh(x).
MAPLE
a:= n-> n!* coeff(series(cosh(x)^sinh(x), x, n+1), x, n):
seq (a(n), n=0..25); # Alois P. Heinz, Aug 14 2012
MATHEMATICA
f[x_] := Cosh[x]^Sinh[x]; Table[Derivative[n][f][0], {n, 25}]
PROG
(Sage)
@CachedFunction
def b(n) : return cosh(x)^sinh(x) if n == 0 else diff(b(n-1), x)
def a(n) : return b(n).subs(x=0)
[a(n) for n in (0..20)] # Peter Luschny, Aug 15 2012
CROSSREFS
Cf. A215679.
Sequence in context: A101192 A228622 A037288 * A215679 A160537 A215516
KEYWORD
sign
AUTHOR
Michel Lagneau, Aug 14 2012
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 19 10:38 EDT 2024. Contains 371791 sequences. (Running on oeis4.)