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.

A230286 a(n) = A016052(n)/3.

Original entry on oeis.org

1, 2, 4, 5, 7, 8, 10, 11, 13, 17, 19, 23, 28, 32, 37, 38, 40, 41, 43, 47, 49, 53, 58, 62, 67, 68, 70, 71, 73, 77, 79, 83, 88, 92, 97, 101, 103, 107, 109, 113, 118, 122, 127, 131, 136, 140, 142, 146, 151, 155, 160, 164
Offset: 1

Views

Author

Keywords

Comments

a(1) = 1; for n >= 1, a(n+1) = a(n) + sum of its digits.

Crossrefs

Cf. A004207, A016052, A230287 (first differences).

Programs

  • Haskell
    a230286 = (flip div 3) . a016052