OFFSET
0,5
LINKS
Philippe Flajolet and Robert Sedgewick, Mellin transforms and asymptotics: Finite differences and Rice's integrals, Theoretical Computer Science 144.1-2 (1995): 101-124.
EXAMPLE
1, 1/2, 1/5, 0, -12/85, -54/221, -2628/8177, -77616/204425, -86688/204425, ...
MAPLE
T:=n->add(binomial(n, k)*(-1)^k/(k^2+1), k=0..n);
MATHEMATICA
Table[Sum[(Binomial[n, k](-1)^k)/(k^2+1), {k, 0, n}], {n, 0, 30}]//Numerator (* Harvey P. Dale, Jul 25 2020 *)
PROG
(PARI) a(n) = numerator(sum(k=0, n, binomial(n, k)*(-1)^k/(k^2+1))); \\ Michel Marcus, Jan 08 2024
CROSSREFS
KEYWORD
sign,frac
AUTHOR
N. J. A. Sloane, May 24 2011
STATUS
approved