A356174 Replace all prime factors p of n with n/p, then take the integer logarithm (A001414).
0, 0, 0, 4, 0, 5, 0, 12, 6, 7, 0, 14, 0, 9, 8, 24, 0, 16, 0, 18, 10, 13, 0, 27, 10, 15, 18, 22, 0, 20, 0, 40, 14, 19, 12, 30, 0, 21, 16, 33, 0, 24, 0, 30, 22, 25, 0, 44, 14, 24, 20, 34, 0, 33, 16, 39, 22, 31, 0, 36, 0, 33, 26, 60, 18, 32, 0, 42, 26, 28, 0, 48, 0, 39
Offset: 1
Keywords
Programs
-
PARI
a(n)=local(f); if(n<1, 0, f=factor(n^(bigomega(n)-1)); sum(k=1, matsize(f)[1], f[k, 1]*f[k, 2]))
Formula
a(A000040(n)) = 0.
Comments