OFFSET
2,3
FORMULA
EXAMPLE
a(2) = 0 because the configuration of 2 circles only possesses D_{4} symmetry.
a(6) = 3 because configurations of 6 circles can have three dihedral symmetries: D_{12} (6 circles arranged in regular hexagon shape), D_{10} (5 circles arranged in regular pentagon shape and the other circle in the center of the pentagon), and D_{6} (6 circles arranged in equilateral triangle shape).
MATHEMATICA
Table[DivisorSigma[0, n]+DivisorSigma[0, n-1]-3, {n, 2, 85}] (* Stefano Spezia, Apr 06 2021 *)
PROG
(Python)
from sympy import divisor_count
for n in range(2, 101):
print(divisor_count(n) + divisor_count(n - 1) - 3, end=", ")
CROSSREFS
KEYWORD
nonn
AUTHOR
Ya-Ping Lu, Apr 02 2021
STATUS
approved