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

A215990
Numerator of sum( k!/2^k, k=1..n ).
2
0, 1, 1, 7, 13, 7, 73, 461, 1721, 7391, 35741, 95833, 140902, 7208291, 6221977, 738064507, 5846167507, 49265043007, 440034922507, 4152348777757, 41275487330257, 431068442131507, 4718790944945257, 27013799863651691, 322866652557800441, 502628413904332477
OFFSET
0,4
COMMENTS
If a(n) is even, then A215976(n)=0 (and n is listed in A215974); the converse is not necessarily true.
MATHEMATICA
Table[Numerator[Sum[k!/2^k, {k, n}]], {n, 0, 30}] (* Harvey P. Dale, Jul 02 2017 *)
PROG
(PARI) a(n)=numerator(sum(k=1, n, k!/2^k))
(PARI) s=0; for(k=1, 29, print1(numerator(s+=k!/2^k), ", "))
CROSSREFS
Sequence in context: A367866 A369717 A365346 * A122874 A066003 A115858
KEYWORD
nonn
AUTHOR
M. F. Hasler, Aug 29 2012
STATUS
approved