Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #17 Jul 13 2021 01:37:20
%S 7,12,13,28,24,39,32,31,72,48,56,96,72,57,72,168,84,96,195,96,121,108,
%T 112,156,216,162,280,152,133,176,160,288,168,372,192,192,252,183,240,
%U 546,216,508,294,468,240,252,342,560,384,288,744,280,288,304,324,720
%N Compute sum of divisors of the prime(n+1)-prime(n)-1 composite numbers between two consecutive primes; choose the smallest.
%H Michael S. Branicky, <a href="/A061120/b061120.txt">Table of n, a(n) for n = 2..10001</a> (terms 2..1002 from Harry J. Smith)
%F a(n) = Min{sigma(c); p(n+1) > c > p(n)}, c is composite, p(n) is the n-th prime and sigma=A000203().
%o (PARI) { n=1; q=3; m=10^6; forprime (p=5, prime(1003), a=m; for (i=q + 1, p - 1, a=min(sigma(i), a)); q=p; write("b061120.txt", n++, " ", a) ) } \\ _Harry J. Smith_, Jul 18 2009
%o (Python)
%o from sympy import prime, divisor_sigma as sigma
%o def a(n): return min(sigma(c) for c in range(prime(n)+1, prime(n+1)))
%o print([a(n) for n in range(2, 58)]) # _Michael S. Branicky_, Jul 12 2021
%Y Cf. A000040, A000203, A061141, A335579.
%K nonn
%O 2,1
%A _Labos Elemer_, May 29 2001
%E Offset changed by _Michael S. Branicky_, Jul 12 2021