A339713 a(n) = (a(n-2) concatenate a(n-1)) for n > 2, with a(1)=1, a(2)=10.
1, 10, 110, 10110, 11010110, 1011011010110, 110101101011011010110, 1011011010110110101101011011010110, 1101011010110110101101011011010110110101101011011010110, 10110110101101101011010110110101101101011010110110101101011011010110110101101011011010110
Offset: 1
Programs
-
Python
def aupton(terms): alst = [1, 10] for n in range(3, terms+1): alst.append(int(str(alst[-2])+str(alst[-1]))) return alst[:terms] print(aupton(10)) # Michael S. Branicky, Apr 24 2021
Comments