A196080 Numerators of the sum of the n-th partial sums of the expansions of e and 1/e.
2, 2, 3, 3, 37, 37, 1111, 1111, 6913, 6913, 799933, 799933, 739138093, 739138093, 44841044309, 44841044309, 32285551902481, 32285551902481, 9879378882159187, 9879378882159187, 1251387991740163687
Offset: 0
Examples
a(0)=1+1, a(1)=2+0, a(2)=(5+1)/2, a(3)=(8+1)/3.
Programs
-
Mathematica
a[n_] := (E*Gamma[n+1, 1] + (1/E)*Gamma[n+1, -1])/n! // FullSimplify // Numerator; Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Aug 02 2012 *)
Extensions
Redefined by reduced fractions. - R. J. Mathar, Jul 02 2012
Comments