OFFSET
1,4
COMMENTS
If q are proper divisors of n then values of sequence a(n) are the bending moments at point 0 of static forces of sizes tau(q) operating in places q on the cantilever as the nonnegative number axis of length n with support at point 0 by the schema: a(n) = Sum_{q | n} (q * tau(q)).
Conjecture: 21 is only number such that a(n) = n.
LINKS
Jens Kruse Andersen, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
For n = 21 with proper divisors [1, 3, 7] we have: a(21) = 7 * tau(7) + 3 * tau(3) + 1 * tau(1) = 7*2 + 3*2 + 1*1 = 21.
PROG
(Magma) [(&+[d*#([e: e in Divisors(d)]): d in Divisors(n)])-(n*(#[d: d in Divisors(n)])): n in [1..1000]];
(PARI) a(n) = sumdiv(n, d, (d<n)*d*numdiv(d)) \\ Jens Kruse Andersen, Aug 13 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jul 23 2014
STATUS
approved
