OFFSET
0,1
COMMENTS
Consider a spiral similar to the spiral described in A239660 but instead of having four quadrants on the square grid the new spiral has six wedges on the triangular grid. A "diamond" formed by two adjacent triangles has area 1. a(n) is the total number of diamonds (or the total area) in the fifth wedge after n + 1 turns. The interesting fact is that for n >> 1 the geometric pattern in the fifth wedge of the spiral is very similar to the geometric pattern of the first wedge but it is different from the other wedges. Also the geometric pattern in the second wedge is very similar to the geometric pattern of the fourth wedge. Note that the six wedge spiral shows more and better geometric patterns than the four quadrants spiral.
LINKS
OEIS Plot 2, Plot pairs of A363161 and A383405
Omar E. Pol, Plot 6. Area of the spiral in the six wedges
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
MATHEMATICA
Accumulate@ Array[DivisorSigma[1, 6 # + 5] &, 55, 0] (* Michael De Vlieger, Apr 25 2025 *)
PROG
(PARI) a(n) = sum(k=0, n, sigma(6*k+5)); \\ Michel Marcus, Apr 25 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Apr 25 2025
STATUS
approved
