OFFSET
1,2
COMMENTS
Conjecture: This is a permutation of the natural numbers. The concatenation of any pair of adjacent terms is a composite number.
EXAMPLE
a(1) = 1 because this is the lexicographically earliest positive number. Then a(2) = 2 because 3|12. Then a(3) = 4 since 3 does not divide 23 but 6 divides 24. And so on...
MATHEMATICA
sod[n_] := Plus @@ IntegerDigits@ n; c[x_, y_] := FromDigits[Join @@ IntegerDigits@ {x, y}]; L = {1}; Do[ k=1; s = sod@ Last@ L; While[ MemberQ[L, k] || Mod[ c[ Last@ L, k], s + sod@ k] != 0, k++]; AppendTo[L, k], {60}]; L (* Giovanni Resta, May 31 2020 *)
PROG
(Python)
def sumdigits(n):
return sum(int(i) for i in list(str(n)))
def concat(a, b):
return int(str(a)+str(b))
def addterm(l):
n, i=l[-1], 1
while True:
c=concat(n, i)
if c % sumdigits(c)==0 and i not in l:
return l+[i]
i+=1
def seq(n):
sequence=[1]
while len(sequence)<n:
sequence=addterm(sequence)
return sequence # David Nacin, May 31 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
David James Sycamore, May 31 2020
STATUS
approved