A093084 Partial sums of digits of decimal expansion of Euler's constant gamma.
0, 5, 12, 19, 21, 22, 27, 33, 39, 43, 52, 52, 53, 58, 61, 63, 71, 77, 77, 83, 83, 89, 94, 95, 97, 97, 106, 106, 106, 114, 116, 120, 120, 122, 126, 129, 130, 130, 134, 136, 137, 142, 151, 154, 157, 162, 171, 174, 183, 192, 194, 197, 202, 211, 219, 227, 227, 232, 239
Offset: 0
Examples
a(3)=19 because 19=0+5+7+7 where 0,5,7,7 are first four digits of Eulers constant gamma, i.e. 0.577215664901532860606512090082402431042
Links
- G. C. Greubel, Table of n, a(n) for n = 0..10000
Crossrefs
Cf. A001620.
Programs
-
Mathematica
Join[{0},Accumulate[RealDigits[EulerGamma,10,120][[1]]]] (* Harvey P. Dale, Mar 28 2016 *)