A156736 Signed greedy Egyptian fraction for Pi/2.
1, 2, 14, -1582, -7497258, 303297921775458, -2646995089135122277190614296178, 82888930564911423983289917045230098319343306166666586941750246
Offset: 0
Keywords
Examples
1+1/2+1/14=11/7=(1/2)(22/7) 1+1/2+1/14-1/1582=355/226=(1/2)(355/113)
Links
- Wikipedia, Greedy algorithm for Egyptian fractions
Crossrefs
Cf. A156750. [From Jaume Oliver Lafont, Mar 03 2009]
Programs
-
PARI
x=Pi/2; for (k=0,7, d=round(1/x); x=x-1/d; print1(d,", "))
Formula
Sum(n>=0,1/a(n))=Pi/2.
a(n) = 2*A001467(n+1). - R. J. Mathar, Apr 02 2011
Comments