A344428 Decimal expansion of exp(-2/5).
6, 7, 0, 3, 2, 0, 0, 4, 6, 0, 3, 5, 6, 3, 9, 3, 0, 0, 7, 4, 4, 4, 3, 2, 9, 2, 5, 1, 4, 7, 8, 2, 6, 0, 7, 1, 9, 3, 6, 9, 8, 0, 9, 2, 5, 2, 1, 0, 8, 1, 2, 1, 9, 9, 8, 8, 8, 9, 1, 0, 3, 3, 1, 6, 2, 5, 8, 9, 4, 1, 7, 5, 1, 2, 0, 3, 5, 3, 7, 4, 3, 8, 2, 6, 3, 3, 7, 5, 4, 3, 9
Offset: 0
Examples
exp(-2/5) = 0.67032004603563930074... In comparison, (zeta(zeta(0.001+1)) - 1) / 2^(-1/0.001) = 0.67022226725425164463...
Programs
-
Mathematica
RealDigits[Exp[-2/5], 10, 100][[1]] (* Amiram Eldar, May 19 2021 *)
-
PARI
default(realprecision, 100); exp(-2/5)
Comments