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

A065952
Numerator of (-1)^n*n!*(E(n,2)-E(n,1)*E(n-1,1)) where E(n,x) = Sum_{k=0..n} (-1)^k*x^k/k!.
4
1, 1, 2, 3, 5, 17, 89, 211, 1903, 62473, 89393, 1324937, 199986173, 1248315547, 25821989299, 1754517215113, 1308752009069, 34794177047129, 32791050165840089, 37082480057069939, 109598046569166901, 7850794626671440751, 1049848025022301180127, 47709314255406993620857
OFFSET
0,3
EXAMPLE
1, 1, 2, 3, 5, 17/2, 89/6, 211/8, 1903/40, 62473/720, ...
MAPLE
E := proc(n, x) add((-1)^k*x^k/k!, k=0..n); end; f := n -> (-1)^n*n!*(E(n, 2)-E(n, 1)*E(n-1, 1));
MATHEMATICA
e[n_, x_]:=Sum[(-x)^k/k!, {k, 0, n}]; a[n_]:=Numerator[(-1)^n*n!*(e[n, 2]-e[n, 1]e[n-1, 1])]; Array[a, 24, 0] (* Stefano Spezia, Apr 12 2024 *)
CROSSREFS
Cf. A065953 (denominator), A065954, A065955, A065956.
Sequence in context: A268209 A245641 A082979 * A308316 A089983 A370606
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Dec 08 2001
EXTENSIONS
a(0)=1 prepended by and a(23) from Stefano Spezia, Apr 12 2024
STATUS
approved