A383403 Partial sums of the sum of the divisors of the numbers of the form 6*k + 3, k >= 0.
4, 17, 41, 73, 113, 161, 217, 295, 367, 447, 551, 647, 771, 892, 1012, 1140, 1296, 1488, 1640, 1822, 1990, 2166, 2406, 2598, 2826, 3060, 3276, 3564, 3824, 4064, 4312, 4632, 4968, 5240, 5552, 5840, 6136, 6539, 6923, 7243, 7607, 7943, 8375, 8765, 9125, 9573, 9989, 10469, 10861
Offset: 0
Examples
For n = 3 the first four terms of the numbers of the form 6*k + 3, k >= 0, are [3, 9, 15, 21]. The divisors of them are [1, 3], [1, 3, 9], [1, 3, 5, 15], [1, 3, 7, 21]. The sum of the divisors of them are [4, 13, 24, 32] respectively, and the sum of all divisors of them are 4 + 13 + 24 + 32 = 73, so a(3) = 73.
Links
- Omar E. Pol, Illustration of a(3) = 73
- Omar E. Pol, Illustration of a(10) = 551
- Omar E. Pol, Plot 6. Area of the spiral in the six wedges
Crossrefs
Programs
-
Mathematica
Accumulate@ Array[DivisorSigma[1, 6 # + 3] &, 55, 0]
-
PARI
a(n) = sum(k=0, n, sigma(6*k+3));
Formula
a(n) = Sum_{k=0..n} sigma(6*k+3).
a(n) = (11*Pi^2/24) * n^2 + O(n*log(n)). - Amiram Eldar, Apr 28 2025
Comments