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 A288570 #16 Aug 20 2021 09:56:18 %S A288570 1,3,6,12,17,27,42,72,79,93,114,156,191,261,366,576,587,609,642,708, %T A288570 763,873,1038,1368,1445,1599,1830,2292,2677,3447,4602,6912,6925,6951, %U A288570 6990,7068,7133,7263,7458,7848,7939,8121,8394,8940,9395,10305,11670,14400,14543 %N A288570 Partial sums of A019565. %H A288570 N. J. A. Sloane, <a href="/A288570/b288570.txt">Table of n, a(n) for n = 0..8191</a> %F A288570 G.f.: (1/(1 - x)) * Product_{k>=0} (1 + prime(k+1)*x^(2^k)). - _Ilya Gutkovskiy_, Aug 18 2021 %o A288570 (PARI) %o A288570 A019565(n) = { my(m=1, p=1); while(n>0, p = nextprime(1+p); if(n%2, m *= p); n >>= 1); (m); }; %o A288570 A288570(n) = sum(i=0,n,A019565(i)); \\ _Antti Karttunen_, Aug 19 2021 %Y A288570 Cf. A019565. %K A288570 nonn,look %O A288570 0,2 %A A288570 _N. J. A. Sloane_, Jun 26 2017