login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A182361 a(n+1) = a(n) + floor(a(n)/8) with a(0)=8. 2
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
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
A182361_list = list(islice(A182361_gen(), 30)) # Chai Wah Wu, Sep 21 2022
CROSSREFS
Sequence in context: A020722 A046037 A089017 * A023391 A115419 A294238
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Apr 26 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 19 04:58 EDT 2024. Contains 370952 sequences. (Running on oeis4.)