cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A245211 a(n) = Sum_{(d

Original entry on oeis.org

0, 1, 1, 5, 1, 11, 1, 17, 7, 15, 1, 47, 1, 19, 17, 49, 1, 62, 1, 67, 21, 27, 1, 151, 11, 31, 34, 87, 1, 145, 1, 129, 29, 39, 25, 254, 1, 43, 33, 219, 1, 189, 1, 127, 104, 51, 1, 423, 15, 130, 41, 147, 1, 278, 33, 287, 45, 63, 1, 589, 1, 67, 132, 321, 37, 277
Offset: 1

Views

Author

Jaroslav Krizek, Jul 23 2014

Keywords

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)).
Number n = 144 is the smallest number n such that a(n) > n * tau(n) (see A245212 and A245214).
Conjecture: 21 is only number such that a(n) = n.

Examples

			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.
		

Crossrefs

Programs

  • 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, (dJens Kruse Andersen, Aug 13 2014

Formula

a(n) = A060640(n) - A038040(n) = Sum_{d | n} (d * tau(d)) - n*tau(n).
a(n) = A038040(n) - A245212(n).
a(n) = 1 for n = primes.
a(n) = n + 5 for even semiprimes q = 2p > 4 (see A100484) where p = odd prime.