login

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”).

A069915
Sum of (1+phi)-divisors of n (cf. A061389).
3
1, 3, 4, 3, 6, 12, 8, 7, 4, 18, 12, 12, 14, 24, 24, 11, 18, 12, 20, 18, 32, 36, 24, 28, 6, 42, 13, 24, 30, 72, 32, 31, 48, 54, 48, 12, 38, 60, 56, 42, 42, 96, 44, 36, 24, 72, 48, 44, 8, 18, 72, 42, 54, 39, 72, 56, 80, 90, 60, 72, 62, 96, 32, 35, 84, 144, 68, 54, 96, 144, 72
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = 1+Sum_{k=1..e, gcd(k, e)=1} p^k.
MATHEMATICA
a[1] = 1; a[p_?PrimeQ] = p + 1; a[n_] := Times @@ (1 + Sum[If[GCD[k, Last[#]] == 1, First[#]^k, 0], {k, 1, Last[#]}] & ) /@ FactorInteger[n]; Table[a[n], {n, 1, 71}] (* Jean-François Alcover, May 04 2012 *)
PROG
(Haskell)
a069915 n = product $ zipWith sum_1phi (a027748_row n) (a124010_row n)
where sum_1phi p e = 1 + sum [p ^ k | k <- a038566_row e]
-- Reinhard Zumkeller, Mar 13 2012
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, 1 + sum(k = 1, f[i, 2], (gcd(k, f[i, 2]) == 1) * f[i, 1]^k)); } \\ Amiram Eldar, Aug 15 2023
CROSSREFS
KEYWORD
mult,nonn
AUTHOR
Vladeta Jovovic, Apr 23 2002
STATUS
approved