The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A108892 Successive base conversions of prior base representations. 0
10, 101, 1211, 14321, 150145, 1163512, 4340370, 8144773, 8144773 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Breaks down when 8144773 (base 11) = 466331A.
LINKS
FORMULA
a(1) = 10; for n>1: a(n) = the base (10) interpretation of a(n-1), represented in base (n+1).
EXAMPLE
a(2) = 101 because a(1) = 10 and 10 (base 3) = 101.
a(3) = 1211 because a(2) = 101 and 101 (base 4) = 1211.
a(4) = 14321 because a(3) = 1211 and 1211 (base 5) = 14321.
a(5) = 150145 because a(4) = 14321 and 14321 (base 6) = 150145.
a(6) = 1163512 because a(5) = 150145 and 150145 (base 7) = 1163512.
MAPLE
a:= proc(n) option remember; `if`(n=1, 10, parse(cat(
ListTools[Reverse](convert(a(n-1), base, n+1))[])))
end:
seq(a(n), n=1..9); # Alois P. Heinz, Jul 10 2023
CROSSREFS
Sequence in context: A290813 A290834 A287014 * A309802 A324083 A162849
KEYWORD
nonn,base,easy,fini,full,less
AUTHOR
Jonathan Vos Post, Jul 14 2005
EXTENSIONS
Corrected (a(6) and onward) by Daniel T. Martin, Jul 10 2023
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 May 23 03:41 EDT 2024. Contains 372758 sequences. (Running on oeis4.)