Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Dec 11 2023 15:25:19
%S 1,2,1,2,1,3,1,4,1,1,1,5,1,6,1,1,1,7,1,8,1,1,1,9,1,2,1,1,2,10,1,11,1,
%T 1,1,2,1,12,2,2,1,13,1,14,1,1,1,15,1,2,1,1,1,16,1,3,1,1,2,17,2,18,1,1,
%U 1,1,1,19,1,1,1,20,1,21,2,1,2,2,1,22,1,1
%N Ordinal transform of the arithmetic derivative A003415.
%C n is the a(n)-th nonnegative integer having its arithmetic derivative.
%H Alois P. Heinz, <a href="/A263111/b263111.txt">Table of n, a(n) for n = 0..20000</a>
%F a(n) = |{ j in {0..n} : A003415(j) = A003415(n) }|.
%p p:= proc() 0 end:
%p a:= proc(n) option remember; local t;
%p t:= n*add(i[2]/i[1], i=ifactors(n)[2]);
%p p(t):= p(t)+1
%p end:
%p seq(a(n), n=0..100);
%Y Cf. A003415.
%K nonn
%O 0,2
%A _Alois P. Heinz_, Oct 09 2015