A383405 Partial sums of the sum of the divisors of the numbers of the form 6*k + 5, k >= 0.
6, 18, 36, 60, 90, 138, 180, 228, 282, 342, 426, 498, 594, 678, 768, 888, 990, 1098, 1212, 1356, 1512, 1644, 1782, 1950, 2100, 2292, 2484, 2652, 2826, 3006, 3234, 3426, 3624, 3864, 4104, 4368, 4620, 4848, 5082, 5322, 5664, 5916, 6174, 6438, 6708, 7080, 7362, 7698, 7992, 8328, 8700, 9012, 9330, 9690, 10074
Offset: 0
Links
- OEIS Plot 2, Plot pairs of A363161 and A383405
- Omar E. Pol, Plot 6. Area of the spiral in the six wedges
Crossrefs
Programs
-
Mathematica
Accumulate@ Array[DivisorSigma[1, 6 # + 5] &, 55, 0] (* Michael De Vlieger, Apr 25 2025 *)
-
PARI
a(n) = sum(k=0, n, sigma(6*k+5)); \\ Michel Marcus, Apr 25 2025
Formula
a(n) = 6*Sum_{k=0..n} A098098(k).
a(n) = (Pi^2/3) * n^2 + O(n*log(n)). - Amiram Eldar, Apr 25 2025
Comments