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 A109789 #17 Apr 17 2021 18:11:54 %S A109789 2,21,124,435,1126,2447,4756,8427,13946,21865,32822,47575,66978,91787, %T A109789 123106,161979,209636,267195,336226,418025,514162,626453,756526, %U A109789 906243,1077772,1272815,1493676,1742527,2021958,2334541,2682248,3068341 %N A109789 a(n) = prime(1^3) + prime(2^3) + prime(3^3) + ... + prime(n^3). %C A109789 Analogy with prime(1^2) + prime(2^2) + ... + prime(n^2) (A109724). If we take the cumulative sum of A055875 including the 0th value of 1, the 3rd value becomes prime(0^3) + prime(1^3) + prime(2^3) + prime(3^3) = 1 + 2 + 19 + 103 = 125 = 5^3. %H A109789 Chai Wah Wu, <a href="/A109789/b109789.txt">Table of n, a(n) for n = 1..10000</a> %F A109789 Cumulative sums of A055875(n) for n>0. %e A109789 a(1) = 2 because prime(1^3) = prime(1) = 2; %e A109789 a(2) = 21 because prime(1^3) + prime(2^3) = prime(1) + prime(8) = 2 + 19; %e A109789 a(3) = 124 because prime(1^3) + prime(2^3) + prime(3^3) = prime(1) + prime(8) + prime(27) = 2 + 19 + 103; %e A109789 a(4) = 435 because prime(1^3) + prime(2^3) = prime(1) + prime(8) + prime(27) + prime(64) = 2 + 19 + 103 + 311. %e A109789 a(6) = 2 + 19 + 103 + 311 + 691 + 1321 = 2447 (which is prime). %e A109789 a(28) = 2 + 19 + 103 + 311 + 691 + 1321 + 2309 + 3671 + 5519 + 7919 + 10957 + 14753 + 19403 + 24809 + 31319 + 38873 + 47657 + 57559 + 69031 + 81799 + 96137 + 112291 + 130073 + 149717 + 171529 + 195043 + 220861 + 248851 = 1742527 (which is prime). %o A109789 (PARI) a(n) = sum(k=1, n, prime(k^3)); \\ _Michel Marcus_, Apr 17 2021 %Y A109789 Cf. A055875, A011757, A109724, A109770. %K A109789 nonn %O A109789 1,1 %A A109789 _Jonathan Vos Post_, Aug 14 2005 %E A109789 Edited by _N. J. A. Sloane_ at the suggestion of _Andrew S. Plewe_, May 14 2007