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.

A175819 Partial sums of digits of decimal expansion of Khinchin's constant (sequence A002210).

Original entry on oeis.org

2, 8, 16, 21, 25, 30, 32, 32, 32, 33, 33, 39, 44, 47, 47, 53, 57, 61, 66, 69, 69, 78, 85, 86, 90, 98, 101, 106, 110, 118, 119, 126, 135, 140, 146, 155, 158, 166, 168, 168, 171, 179, 181, 183, 192, 195, 204, 213, 217, 221, 227, 229, 238, 243, 246, 246, 251, 252, 253
Offset: 1

Views

Author

Michel Lagneau, Sep 11 2010

Keywords

Examples

			Khinchin's constant 2.6854520010 ... so the sums are 2, 2+6, 2+6+8, 2+6+8+5, 2+6+8+5+4..., leading to the terms 2, 8, 16, 21, 25,...
		

Crossrefs

Cf. A002210 for digits of Khintchine's constant

Programs

  • Mathematica
    L= Rest@FoldList[ Plus, 0, First@ RealDigits[Khinchin, 10, 100]]
    Accumulate[RealDigits[Khinchin,10,60][[1]]]  (* Harvey P. Dale, Mar 24 2011 *)