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.
%I A092777 #28 Jun 24 2022 19:14:21 %S A092777 1,2,4,6,8,11,14,17,20,23,26,30,34,38,42,46,50,54,58,62,66,70,74,78, %T A092777 83,88,93,98,103,108,113,118,123,128,133,138,143,148,153,158,163,168, %U A092777 173,178,183,188,193,198,203,208,213,218,223,229,235,241,247,253,259,265 %N A092777 a(n) = Sum_{k=1..n} round(log(prime(k))). %H A092777 Harvey P. Dale, <a href="/A092777/b092777.txt">Table of n, a(n) for n = 1..1000</a> %t A092777 Accumulate[Round[Log[Prime[Range[60]]]]] (* _Harvey P. Dale_, Jul 08 2015 *) %o A092777 (PARI) A092777()={for(n=1, 100, summ=0; for(k=1,n, summ += round(log(prime(k)))); print1(summ, ", "));} \\ _Bill McEachen_, Sep 16 2015 %Y A092777 Cf. A215260. %Y A092777 Partial sums of A029836. %K A092777 nonn %O A092777 1,2 %A A092777 _Jorge Coveiro_, Apr 14 2004