A351269 Sum of the 6th powers of the squarefree divisors of n.
1, 65, 730, 65, 15626, 47450, 117650, 65, 730, 1015690, 1771562, 47450, 4826810, 7647250, 11406980, 65, 24137570, 47450, 47045882, 1015690, 85884500, 115151530, 148035890, 47450, 15626, 313742650, 730, 7647250, 594823322, 741453700, 887503682, 65, 1293240260
Offset: 1
Examples
a(4) = 65; a(4) = Sum_{d|4} d^6 * mu(d)^2 = 1^6*1 + 2^6*1 + 4^6*0 = 65.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..10000
- N. J. A. Sloane, Transforms.
Crossrefs
Programs
-
Mathematica
a[1] = 1; a[n_] := Times @@ (1 + FactorInteger[n][[;; , 1]]^6); Array[a, 100] (* Amiram Eldar, Feb 06 2022 *)
Formula
a(n) = Sum_{d|n} d^6 * mu(d)^2.
Multiplicative with a(p^e) = 1 + p^6. - Amiram Eldar, Feb 06 2022
G.f.: Sum_{k>=1} mu(k)^2 * k^6 * x^k / (1 - x^k). - Ilya Gutkovskiy, Feb 06 2022
Sum_{k=1..n} a(k) ~ c * n^7, where c = zeta(7)/(7*zeta(2)) = 0.0875718... . - Amiram Eldar, Nov 10 2022
Comments