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!)
A008558 Repeatedly convert from decimal to octal. 1
9, 11, 13, 15, 17, 21, 25, 31, 37, 45, 55, 67, 103, 147, 223, 337, 521, 1011, 1763, 3343, 6417, 14421, 34125, 102515, 310163, 1135623, 4252007, 20160547, 114720043, 665476453, 4752456545, 43321135541, 502611010665, 7240574662151, 151272370273007 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
NestList[FromDigits[IntegerDigits[#, 8]]&, 9, 40] (* Harvey P. Dale, Apr 09 2012 *)
PROG
(Python)
def aupton(terms):
alst = [9]
for n in range(2, terms+1): alst.append(int(oct(alst[-1])[2:]))
return alst
print(aupton(35)) # Michael S. Branicky, Sep 11 2021
CROSSREFS
Cf. A007094.
Sequence in context: A065454 A334688 A248629 * A335912 A123760 A289686
KEYWORD
nonn,base
AUTHOR
sbv(AT)VNET.IBM.COM (Scott Vetter), msvetter(AT)eng.xyplex.com (Mark Vetter)
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 April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)