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!)
A055987 a(n+1) = a(n) converted to base 10 from base 16. 2
10, 16, 22, 34, 52, 82, 130, 304, 772, 1906, 6406, 25606, 153094, 1388692, 20481682, 541595266, 22571209318, 2359835005720, 621877793937184, 441783186105790852, 1256072821702053660754 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
MATHEMATICA
NestList[FromDigits[IntegerDigits[#], 16]&, 10, 20] (* Vincenzo Librandi, Apr 06 2012 *)
PROG
(Python)
def aupton(nn):
alst = [10]
for n in range(1, nn+1):
alst.append(int(str(alst[-1]), 16))
return alst
print(aupton(20)) # Michael S. Branicky, Oct 16 2021
CROSSREFS
Cf. A055986.
Sequence in context: A245024 A264721 A136799 * A187397 A152138 A109100
KEYWORD
base,nonn
AUTHOR
Henry Bottomley, Jun 01 2000
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 12 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)