OFFSET
0,2
LINKS
Robert Israel, Table of n, a(n) for n = 0..100
MAPLE
c:= proc(m) option remember;
1/(m+1)! - add((-1)^i/(2*i+1)!*c(m-2*i), i=1..floor((m+1)/2))
end proc;
c(-1):= 1;
A007418:= numer @ c; # Robert Israel, Apr 13 2014
MATHEMATICA
Numerator /@ Rest@CoefficientList[x Exp[x]/Sin[x] + O[x]^30, x] (* Jean-François Alcover, Aug 16 2022 *)
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
STATUS
approved