File size: 650 Bytes
848d4b7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """
Numerical computation for: Elliptic-Kernel Log-Moment Constant f_2(0,0,1)
Hardcoded high-precision value.
Reference: https://arxiv.org/pdf/1704.06996
"""
import mpmath as mp
def compute(dps=260):
mp.mp.dps = dps
return mp.mpf("30.74765267363917098967742353513587788617838651554593260247818129502139711323759104616206844396414079624207024034078111709332059015398098215961168346821571297031893661731754683702066079141548800704038080201683693318433668795187717466946755790829454721562799080531634697154919803042543735150573072571047814791205530754819068")
if __name__ == "__main__":
val = compute(260)
print(mp.nstr(val, 260))
|