login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A245213
Numbers n such that A245212(n) < n.
4
72, 96, 120, 144, 180, 192, 216, 240, 288, 336, 360, 384, 432, 480, 504, 528, 540, 576, 600, 624, 648, 672, 720, 756, 768, 792, 840, 864, 900, 936, 960, 972, 1008, 1056, 1080, 1120, 1152, 1176, 1200, 1224, 1248, 1260, 1280, 1296, 1320, 1344, 1368, 1440, 1512
OFFSET
1,1
COMMENTS
Numbers n such that A245212(n) = (n * tau(n)) - Sum_((d<n) | n) (d * tau(d)) < n.
If d are divisors of n then values of sequence A245212(n) are the bending moments at point 0 of static forces of sizes tau(d) operating in places d on the cantilever as the nonnegative number axis of length n with support at point 0 by the schema: A245212(n) = (n * tau(n)) - Sum_((d<n) | n) (d * tau(d)).
LINKS
EXAMPLE
Number 72 is in sequence because A245212(72) = 62 < 72.
PROG
(Magma) [n: n in [1..100000] | (2*(n*(#[d: d in Divisors(n)]))-(&+[d*#([e: e in Divisors(d)]): d in Divisors(n)])) lt n]
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jul 23 2014
STATUS
approved