Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 2705

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: 170417538 *}

i1 : egyptian = method();

i2 : egyptian QQ := x -> if x == 0 then 0 else (
          n := ceiling(1/x);
          expression(1/n) + egyptian(x - 1/n));

i3 : egyptian(30/31)

     1   1   1    1      1         1
o3 = - + - + - + --- + ----- + ---------
     2   3   8   107   15922   633759288

o3 : Expression of class Sum

i4 :