OFFSET
0,4
REFERENCES
G. W. Caunt, Infinitesimal Calculus, Oxford Univ. Press, 1914, p. 477.
LINKS
T. D. Noe, Table of n, a(n) for n=0..100
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
KEYWORD
nonn,frac,easy,nice
AUTHOR
STATUS
approved