<? set_time_limit (60); $tmp = 1; for ($i = 1; $i <= 10000000; $i++) { if ($i % 2) $tmp -= 1/(2*$i+1); else $tmp += 1/(2*$i+1); } echo 4 * $tmp; ?>