OFFSET
1,3
COMMENTS
Construct the same directed graph as in A369793. a(n) is the sum of vertices directed to the vertex n in this graph.
EXAMPLE
PROG
(Python)
from sympy import divisors
def A371597(n): return sum(m for m in range(1, (n**2>>2)+1) if (d:=divisors(m))[((l:=len(d))-1)>>1]+d[l>>1]==n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Adnan Baysal, Mar 28 2024
STATUS
approved