刚在知乎发现一条野兽公式,特此记录。
感兴趣的可以自行在浏览器控制台中输入如下代码验证:
const e = Math.exp(1);
const pi = Math.PI;
const term1 = e * ((e + pi) * (e + e + pi)) ** e; // 114514.15147933988
const term2 = e / ((pi ** e - e) * (e + Math.exp(pi) - pi ** e)); // 0.04050163499818259
console.log((term1 + term2).toFixed(7)); // 114514.1919810