[go: up one dir, main page]

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

A009489 revision #17

A009489
Expansion of sin(sinh(tan(x))).
1
1, 2, 8, -344, -44416, -5130368, -688030080, -109875416832, -20650894622720, -4460981432725504, -1069938200055119872, -268541150093198032896, -60666450534816002965504, -3605301387144067469213696
OFFSET
0,2
LINKS
FORMULA
sin(sinh(tan(x))) = Sum_{n>=0} a(n)*x^(2*n+1)/(2*n+1)!. - Robert Israel, Nov 23 2016
MAPLE
S:= series(sin(sinh(tan(x))), x, 51):
seq(coeff(S, x, j)*j!, j=1..49, 2); # Robert Israel, Nov 23 2016
MATHEMATICA
Sin[ Sinh[ Tan[ x ] ] ] (* Odd Part *)
Take[Table[n!*SeriesCoefficient[Sin[Sinh[Tan[x]]], {x, 0, n}], {n, 0, 15}], {2, -1, 2}] (* G. C. Greubel, Nov 23 2016 *)
CROSSREFS
Sequence in context: A009707 A013176 A220904 * A102597 A009836 A012342
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved