A366076 The number of prime factors of the largest divisor of n that is a cubefull number (A036966), counted with multiplicity.
0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Rafael Jakimczuk and Matilde LalĂn, Sums of omega(n) and Omega(n) over the k-free parts and k-full parts of some particular sequences, Integers, Vol. 22 (2022), Article #A113.
Crossrefs
Programs
-
Mathematica
f[p_, e_] := If[e < 3, 0, e]; a[1] = 0; a[n_] := Plus @@ f @@@ FactorInteger[n]; Array[a, 100]
-
PARI
a(n) = vecsum(apply(x -> if(x < 3, 0, x), factor(n)[, 2]));
Formula
Additive with a(p^e) = 0 if e <= 2, and a(p^e) = e for e >= 3.
a(n) >= 0, with equality if and only if n is cubefree (A004709).
Comments