OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..40
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
KEYWORD
base,nonn
AUTHOR
Henry Bottomley, Jun 01 2000
STATUS
approved