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 A014150 #19 Feb 08 2015 17:42:57 %S A014150 2,9,26,60,122,225,386,624,962,1429,2056,2880,3942,5285,6956,9008, %T A014150 11500,14493,18054,22254,27166,32869,39446,46986,55586,65347,76372, %U A014150 88768,102644,118113,135302,154342,175370 %N A014150 Apply partial sum operator thrice to primes. %C A014150 Row 3 in A254858. - _Reinhard Zumkeller_, Feb 08 2015 %H A014150 Reinhard Zumkeller, <a href="/A014150/b014150.txt">Table of n, a(n) for n = 1..10000</a> %t A014150 lst={};s1=0;s2=0;s3=0;Do[s1=s1+Prime[n];s2=s2+s1;s3=s3+s2;AppendTo[lst, s3], {n, 5!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Sep 15 2008 *) %t A014150 With[{nn=3},Nest[Accumulate[#]&,Prime[Range[50]],nn]] (* _Harvey P. Dale_, Feb 07 2015 *) %o A014150 (Haskell) %o A014150 a014150 n = a014150_list !! (n-1) %o A014150 a014150_list = (iterate (scanl1 (+)) a000040_list) !! 3 %o A014150 -- _Reinhard Zumkeller_, Feb 08 2015 %Y A014150 Cf. A000040. %Y A014150 Cf. A007504, A014148, A178138, A254784. %Y A014150 Cf. A254858. %K A014150 nonn %O A014150 1,1 %A A014150 _N. J. A. Sloane_ %E A014150 Offset fixed by _Reinhard Zumkeller_, Feb 08 2015