A341529 a(n) = sigma(n) * A003961(n), where A003961 shifts the prime factorization of n one step towards larger primes, and sigma is the sum of the divisors of n.
1, 9, 20, 63, 42, 180, 88, 405, 325, 378, 156, 1260, 238, 792, 840, 2511, 342, 2925, 460, 2646, 1760, 1404, 696, 8100, 1519, 2142, 5000, 5544, 930, 7560, 1184, 15309, 3120, 3078, 3696, 20475, 1558, 4140, 4760, 17010, 1806, 15840, 2068, 9828, 13650, 6264, 2544, 50220, 6897, 13671, 6840, 14994, 3186, 45000, 6552, 35640
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
Array[DivisorSigma[1, #]*Times @@ Map[#1^#2 & @@ # &, FactorInteger[#] /. {p_, e_} /; e > 0 :> {Prime[PrimePi@ p + 1], e}] - Boole[# == 1] &, 56] (* Michael De Vlieger, Feb 22 2021 *)
-
PARI
A003961(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); }; \\ From A003961 A341529(n) = (sigma(n)*A003961(n));
Formula
Multiplicative with a(p^e) = q^e * (p^(e+1)-1)/(p-1), where q = nextPrime(p).
For all n > 1, a(n) > A341528(n).
a(n) = A341528(n) + A341512(n) = A342671(n) * A342672(n) = A342661(A003961(n)). - Antti Karttunen, Mar 22 2021
Sum_{k=1..n} a(k) ~ c * n^3, where c = (1/3) * Product_{p prime} p^4*(p-1)/((p^3-nextprime(p))*(p^2-nextprime(p))) = 3.0664809..., where nextprime is A151800. - Amiram Eldar, Dec 08 2022
Comments