OFFSET
0,2
COMMENTS
Sum_{n>=0}1/a(n)=4/Pi
Truncating the series to three terms yields the convergent 22/7 as an approximation to Pi:
1+1/4+1/44=14/11=4/(22/7)
LINKS
PROG
(PARI) x=4/Pi; for (k=0, 7, d=ceil(1/x); x=x-1/d; print(d, ", "))
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Jaume Oliver Lafont, Feb 24 2009
STATUS
approved