cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A093084 Partial sums of digits of decimal expansion of Euler's constant gamma.

Original entry on oeis.org

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

Views

Author

Shyam Sunder Gupta, May 09 2004

Keywords

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
		

Crossrefs

Cf. A001620.

Programs

  • Mathematica
    Join[{0},Accumulate[RealDigits[EulerGamma,10,120][[1]]]] (* Harvey P. Dale, Mar 28 2016 *)