A197222
Numerators of convergents to e - 1/e.
Original entry on oeis.org
2, 5, 7, 40, 47, 275, 597, 872, 3213, 36215, 111858, 148073, 704150, 6485423, 7189573, 49622861, 56812434, 220060163, 716992923, 937053086, 4465205267, 9867463620, 14332668887, 24200132507, 86933066408, 111133198915, 420332663153, 1792463851527
Offset: 1
A195326
Numerators of fractions leading to e - 1/e (A174548).
Original entry on oeis.org
0, 2, 2, 7, 7, 47, 47, 5923, 5923, 426457, 426457, 15636757, 15636757, 7318002277, 7318002277, 1536780478171, 1536780478171, 603180793741, 603180793741, 142957467201379447, 142957467201379447
Offset: 0
a(0) = 1 - 1;
a(1) = 2 - 0;
a(2) = 5/2 - 1/2.
-
taylExp1 := proc(n)
add(1/j!,j=0..n) ;
end proc:
A000255 := proc(n)
if n <=1 then
1;
else
n*procname(n-1)+(n-1)*procname(n-2) ;
end if;
end proc:
A001048 := proc(n)
n!+(n-1)! ;
end proc:
A195326 := proc(n)
if n = 0 then
0;
elif n =1 then
2;
else
taylExp1(n) -A000255(n-2)/A001048(n-1);
end if;
numer(%);
end proc:
seq(A195326(n),n=0..20) ; # R. J. Mathar, Oct 14 2011
Material meant to be placed in other sequences removed by
R. J. Mathar, Oct 14 2011
Showing 1-2 of 2 results.
Comments