%I #36 Apr 29 2022 16:16:11
%S 1,5,14,35,76,164,336,687,1387,2792,5596,11220,22454,44932,89888,
%T 179807,359632,719303,1438626,2877294,5754620,11509276,23018576,
%U 46037212,92074455,184148952,368297944,736595944,1473191918,2946383908
%N a(n) = Sum_{k=1..n} sigma(k)*2^(n-k) where sigma(k) = A000203(k) is the sum of divisors of k.
%C a(n) is the numerator of the unreduced fraction of the n-th partial sum of Sum_{k>=1} sigma(k)/2^k where the denominator of that unreduced fraction is 2^n. The partial sums converge to A066766 = 2.744033...
%D Steven R. Finch, Mathematical Constants, Cambridge, 2003, pp. 354-361.
%H Steven R. Finch, <a href="http://www.people.fas.harvard.edu/~sfinch/constant/dig/dig.html">Digital Search Tree Constants</a> [Broken link]
%H Steven R. Finch, <a href="http://web.archive.org/web/20010413214937/http://www.mathsoft.com:80/asolve/constant/dig/dig.html">Digital Search Tree Constants</a> [From the Wayback machine]
%e a(1) = 2*(1/2);
%e a(2) = 4*(1/2 + (1+2)/4) since sigma(1) = 1 and sigma(2) = 1 + 2 = 3;
%e a(3) = 8*(1/2 + (1+2)/4 + (1+3)/8);
%e a(4) = 16*(1/2 + (1+2)/4 + (1+3)/8 + (1+2+4)/16).
%o (PARI) smv(v)= s=0; for(i=1,matsize(v)[2],s=s+v[i]); s
%o a(n)= sm=0; for(j=1,n,sm=sm+smv(divisors(j)/2^j)); sm*2^n
%o (PARI) a(n) = 2^n*(sum(k=1, n, sigma(k)/2^k)); \\ _Michel Marcus_, Apr 25 2022
%Y Cf. A000203, A066766.
%K nonn
%O 1,2
%A _Randall L Rathbun_, Jan 16 2002