A383619 Conjectured list of least elements of nontrivial arithmetic derivative orbits.
1, 8, 20, 36, 40, 54, 64, 84, 104, 116, 135, 144, 196, 224, 228, 232, 243, 264, 270, 280
Offset: 1
Examples
a(2) := min(C_2) = 8.
Crossrefs
Programs
-
SageMath
D = lambda n: 0 if n<2 else sum(e*(n//p) for p,e in Integer(n).factor()) def A(N, k=None): c, o = {1:1}, [1] for i in range(2, N+1): if i in c: continue P, m = [], i while 1 <= m <= N and m not in c and m not in P: P.append(m) m = D(m) if m in c: v = c[m] elif m in P: v = min(P[P.index(m):]) else: v = min(P) for x in P: c[x] = v if c[i] == i and len(P) > 1: o.append(i) if k and len(o) >= k: break return o A(10**18, k=20)
Formula
Let {C_n} be the family of nontrivial equivalence classes under iteration of the arithmetic derivative operator. Then, a(n) := min(C_n).
Comments