This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A343221 #13 May 23 2021 03:20:42 %S A343221 0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,2,0,1,0,1,0,0,0,2,0,0,1,1,0,1,0,3,0,0, %T A343221 0,2,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,1,0,1,0,2,0,0,0,2,0,0,0,3,0,0,0,1, %U A343221 0,0,0,2,0,0,0,1,0,0,0,2,1,0,0,1,0,0,0,2,0,1,0,1,0,0,0,3,0,0,0,1,0,0,0,2,0 %N A343221 Number of iterations of x -> A003961(x) needed until A003415(x) < x, when starting from x=n, where A003415(x) gives the arithmetic derivative of x, and A003961 shifts its prime factorization one step towards the larger primes. %H A343221 Antti Karttunen, <a href="/A343221/b343221.txt">Table of n, a(n) for n = 1..65537</a> %o A343221 (PARI) %o A343221 A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1])); %o A343221 A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); }; %o A343221 A343221(n) = if(A003415(n)<n,0,1+A343221(A003961(n))); %Y A343221 Cf. A083347 (positions of zeros). %Y A343221 Cf. A003415, A003961, A343222, A344027. %K A343221 nonn %O A343221 1,8 %A A343221 _Antti Karttunen_, Apr 08 2021