OFFSET
1,2
COMMENTS
Proper divisibility of n's 1-area. This is the first step to examine the divisibility of n's k-area. n's k-area is the set of m for which |n-m| is less than or equal to k (n, k, m are natural numbers). 1's 1-area is {1,2}, 5's 1-area {4,5,6}, 3's 2-area {1,2,3,4,5}. We could call this natural area, and still talk about nonnegative or integer areas etc.
MATHEMATICA
{1}~Join~MapAt[# + 1 &, Total /@ Partition[DivisorSigma[0, Range@82] - 1, 3, 1], 1] (* Michael De Vlieger, Jun 06 2019 *)
PROG
(PARI) dp(n) = if (n < 1, 0, numdiv(n) - 1);
a(n) = dp(n-1) + dp(n) + dp(n+1); \\ Michel Marcus, Jun 11 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Todor Szimeonov, Mar 25 2019
STATUS
approved