Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #8 Apr 02 2015 11:24:56
%S 1,3,3,3,9,9,9,2,2,2,21,21,21,21,21,21,21,21,21,21,21,21,38,46,46,46,
%T 46,46,46,58,58,58,58,58,58,58,58,58,58,58,58,62,62,74,74,74,74,82,82,
%U 74,74,74,62,74,74,74,74,74,62,74,74,82,82,82,82,82,82,82
%N a(n) is the central term of the (2n-1)-st row of triangle A256440.
%C All terms are deficient and after the 4th term sigma(n)/n appears to stay between 1.5 and 1.6.
%C Note that sequence is not monotonic and can return later to previous terms values.
%H Michel Marcus, <a href="/A256566/b256566.txt">Table of n, a(n) for n = 1..1000</a>
%o (PARI) lista(nn) = {forstep(n=1, nn, 2, v = vector(n, k, sigma(k)/k); w = vecsort(v,,1); print1(w[(n+1)/2], ", "););}
%Y Cf. A005100 (deficient numbers), A256440.
%K nonn
%O 1,2
%A _Michel Marcus_, Apr 02 2015