A182361 a(n+1) = a(n) + floor(a(n)/8) with a(0)=8.
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
Keywords
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