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.
%I A182361 #22 May 03 2023 21:36:51 %S A182361 8,9,10,11,12,13,14,15,16,18,20,22,24,27,30,33,37,41,46,51,57,64,72, %T A182361 81,91,102,114,128,144,162,182,204,229,257,289,325,365,410,461,518, %U A182361 582,654,735,826,929,1045,1175,1321,1486,1671,1879,2113,2377,2674,3008 %N A182361 a(n+1) = a(n) + floor(a(n)/8) with a(0)=8. %t A182361 NestList[#+Floor[#/8]&,8,60] (* _Harvey P. Dale_, Jun 12 2022 *) %o A182361 (Python) %o A182361 from itertools import islice %o A182361 def A182361_gen(): # generator of terms %o A182361 a = 8 %o A182361 while True: %o A182361 yield a %o A182361 a += a>>3 %o A182361 A182361_list = list(islice(A182361_gen(),30)) # _Chai Wah Wu_, Sep 21 2022 %Y A182361 Cf. A061418, A100585, A182305, A182306, A182307, A182308. %K A182361 nonn %O A182361 0,1 %A A182361 _Alex Ratushnyak_, Apr 26 2012