login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A046979
Denominators of Taylor series for exp(x)*sin(x).
7
1, 1, 1, 3, 1, 30, 90, 630, 1, 22680, 113400, 1247400, 1, 97297200, 681080400, 10216206000, 1, 1389404016000, 12504636144000, 237588086736000, 1, 49893498214560000, 548828480360160000, 12623055048283680000, 1, 3786916514485104000000, 49229914688306352000000
OFFSET
0,4
REFERENCES
G. W. Caunt, Infinitesimal Calculus, Oxford Univ. Press, 1914, p. 477.
FORMULA
a(4n) = 1, a(n) = n!/2^floor(n/2).
EXAMPLE
1*x + 1*x^2 + 1/3*x^3 - 1/30*x^5 - 1/90*x^6 - 1/630*x^7 + 1/22680*x^9 + 1/113400*x^10 + ...
MAPLE
a:= n-> denom(coeff(series(sin(x)/exp(x), x, n+1), x, n)):
seq(a(n), n=0..30); # Alois P. Heinz, Nov 17 2017
MATHEMATICA
Denominator[CoefficientList[Series[Exp[x]Sin[x], {x, 0, 30}], x] ] (* Harvey P. Dale, Feb 14 2015 *)
PROG
(PARI) a(n) = if (n % 4, n!/2^floor(n/2), 1); \\ Michel Marcus, Oct 12 2015
CROSSREFS
Essentially the same as absolute values of A007415.
Sequence in context: A120066 A326797 A227953 * A354096 A270086 A141411
KEYWORD
nonn,frac,easy,nice
STATUS
approved