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-3 of 3 results.

A182361 a(n+1) = a(n) + floor(a(n)/8) with a(0)=8.

Original entry on oeis.org

8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 24, 27, 30, 33, 37, 41, 46, 51, 57, 64, 72, 81, 91, 102, 114, 128, 144, 162, 182, 204, 229, 257, 289, 325, 365, 410, 461, 518, 582, 654, 735, 826, 929, 1045, 1175, 1321, 1486, 1671, 1879, 2113, 2377, 2674, 3008
Offset: 0

Views

Author

Alex Ratushnyak, Apr 26 2012

Keywords

Crossrefs

Programs

  • Mathematica
    NestList[#+Floor[#/8]&,8,60] (* Harvey P. Dale, Jun 12 2022 *)
  • Python
    from itertools import islice
    def A182361_gen(): # generator of terms
        a = 8
        while True:
            yield a
            a += a>>3
    A182361_list = list(islice(A182361_gen(),30)) # Chai Wah Wu, Sep 21 2022

A182362 a(n+1) = a(n) + floor(a(n)/9) with a(0)=9.

Original entry on oeis.org

9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 24, 26, 28, 31, 34, 37, 41, 45, 50, 55, 61, 67, 74, 82, 91, 101, 112, 124, 137, 152, 168, 186, 206, 228, 253, 281, 312, 346, 384, 426, 473, 525, 583, 647, 718, 797, 885, 983, 1092, 1213, 1347, 1496, 1662, 1846
Offset: 0

Views

Author

Alex Ratushnyak, Apr 26 2012

Keywords

Crossrefs

Programs

  • Mathematica
    NestList[#+Floor[#/9]&,9,60] (* Harvey P. Dale, Feb 21 2015 *)
  • Python
    a=9
    for i in range(55):
        print(a, end=', ')
        a += a//9

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-3 of 3 results.