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.

Showing 1-1 of 1 results.

A182363 a(n+1) = a(n) + floor(a(n)/10) with a(0) = 10.

Original entry on oeis.org

10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 33, 36, 39, 42, 46, 50, 55, 60, 66, 72, 79, 86, 94, 103, 113, 124, 136, 149, 163, 179, 196, 215, 236, 259, 284, 312, 343, 377, 414, 455, 500, 550, 605, 665, 731, 804, 884, 972, 1069, 1175, 1292
Offset: 0

Views

Author

Alex Ratushnyak, Apr 26 2012

Keywords

Crossrefs

Programs

  • Mathematica
    NestList[# + Floor[#/10] &, 10, 100] (* Paolo Xausa, Dec 22 2024 *)
  • Python
    a=10
    for i in range(55):
        print(a, end=', ')
        a += a//10
Showing 1-1 of 1 results.