A375230 The total number of infinitary divisors of the infinitary divisors of n.
1, 3, 3, 3, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 9, 3, 3, 9, 3, 9, 9, 9, 3, 27, 3, 9, 9, 9, 3, 27, 3, 9, 9, 9, 9, 9, 3, 9, 9, 27, 3, 27, 3, 9, 9, 9, 3, 9, 3, 9, 9, 9, 3, 27, 9, 27, 9, 9, 3, 27, 3, 9, 9, 9, 9, 27, 3, 9, 9, 27, 3, 27, 3, 9, 9, 9, 9, 27, 3, 9, 3, 9, 3, 27
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
f[p_, e_] := 3^DigitCount[e, 2, 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
-
PARI
a(n) = vecprod(apply(x -> 3^hammingweight(x), factor(n)[,2]));