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.

A231676 a(n) = Sum_{i=0..n} digsum_7(i), where digsum_7(i) = A053828(i).

Original entry on oeis.org

0, 1, 3, 6, 10, 15, 21, 22, 24, 27, 31, 36, 42, 49, 51, 54, 58, 63, 69, 76, 84, 87, 91, 96, 102, 109, 117, 126, 130, 135, 141, 148, 156, 165, 175, 180, 186, 193, 201, 210, 220, 231, 237, 244, 252, 261, 271, 282, 294, 295, 297, 300, 304, 309, 315, 322, 324, 327, 331, 336, 342, 349, 357, 360, 364, 369, 375, 382, 390, 399, 403, 408, 414, 421, 429, 438, 448, 453, 459, 466
Offset: 0

Views

Author

N. J. A. Sloane, Nov 13 2013

Keywords

References

  • Jean-Paul Allouche and Jeffrey Shallit, Automatic sequences, Cambridge University Press, 2003, p. 94.

Crossrefs

Programs

  • Mathematica
    Accumulate[Table[Total[IntegerDigits[n,7]],{n,0,80}]] (* Harvey P. Dale, Aug 28 2021 *)
  • PARI
    a(n) = sum(i=0, n, sumdigits(i, 7)); \\ Michel Marcus, Dec 09 2021

Formula

a(n) ~ 3*n*log(n)/log(7). - Amiram Eldar, Dec 09 2021