OFFSET
0,1
MATHEMATICA
NestList[#+Floor[#/8]&, 8, 60] (* Harvey P. Dale, Jun 12 2022 *)
PROG
(Python)
from itertools import islice
def A182361_gen(): # generator of terms
a = 8
while True:
yield a
a += a>>3
CROSSREFS
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Apr 26 2012
STATUS
approved