%I #15 Oct 23 2023 17:21:05
%S 2,4,9,15,28,36,51,59,75,102,112,141,159,169,187,218,248,262,293,313,
%T 327,357,378,412,460,483,493,515,529,553,636,658,696,706,767,781,821,
%U 857,877,918,952,972,1032,1048,1071,1085,1167,1239,1266,1280,1306,1342,1364,1422
%N a(n) = Sum_{k = 1..N-1} floor(N/k) where N is the n-th prime.
%C The old entry with this sequence number was a duplicate of A081532.
%H Giovanni Resta, <a href="/A085683/b085683.txt">Table of n, a(n) for n = 1..10000</a>
%H R. K. Guy, <a href="http://www.jstor.org/stable/2690263">Conway's prime producing machine</a>, Math. Mag. 56 (1983), no. 1, 26-33 (see p. 33).
%t (Rest@ FoldList[ Plus, 0, DivisorSigma[0, Range@ Prime@ 100]])[[ Prime@ Range@ 100]] -1 (* _Giovanni Resta_, Jun 09 2015 *)
%o (Python)
%o from math import isqrt
%o from sympy import prime
%o def A085683(n): return -(s:=isqrt(m:=prime(n)))**2+(sum(m//k for k in range(1,s+1))<<1)-1 # _Chai Wah Wu_, Oct 23 2023
%Y Cf. A006218, A077597.
%K nonn
%O 1,1
%A _N. J. A. Sloane_, Oct 28 2008