A182139 Inverse Moebius transform of A061142.
1, 3, 3, 7, 3, 9, 3, 15, 7, 9, 3, 21, 3, 9, 9, 31, 3, 21, 3, 21, 9, 9, 3, 45, 7, 9, 15, 21, 3, 27, 3, 63, 9, 9, 9, 49, 3, 9, 9, 45, 3, 27, 3, 21, 21, 9, 3, 93, 7, 21, 9, 21, 3, 45, 9, 45, 9, 9, 3, 63, 3, 9, 21, 127, 9, 27, 3, 21, 9, 27, 3, 105, 3, 9, 21, 21, 9
Offset: 1
Examples
a(12) = a(2^2 * 3^1) = (-1 + 2^(2+1)) * (-1 + 2^(1+1)) = 7 * 3 = 21; or, using the divisors set {1,2,3,4,6,12}: 2^0 + 2^1 + 2^1 + 2^2 + 2^2 + 2^3 = 21.
Links
- Enrique Pérez Herrero, Table of n, a(n) for n = 1..5000
Programs
-
Mathematica
t[n_] := DivisorSum[n, 2^PrimeOmega[#]&]; Table[t[n], {n,100}]
-
PARI
for(n=1, 100, print1(direuler(p=2, n, 1/(1 - X)/(1 - 2*X))[n], ", ")) \\ Vaclav Kotesovec, Mar 14 2023
Comments