login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A014150 Apply partial sum operator thrice to primes. 11
2, 9, 26, 60, 122, 225, 386, 624, 962, 1429, 2056, 2880, 3942, 5285, 6956, 9008, 11500, 14493, 18054, 22254, 27166, 32869, 39446, 46986, 55586, 65347, 76372, 88768, 102644, 118113, 135302, 154342, 175370 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Row 3 in A254858. - Reinhard Zumkeller, Feb 08 2015
LINKS
MATHEMATICA
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 *)
With[{nn=3}, Nest[Accumulate[#]&, Prime[Range[50]], nn]] (* Harvey P. Dale, Feb 07 2015 *)
PROG
(Haskell)
a014150 n = a014150_list !! (n-1)
a014150_list = (iterate (scanl1 (+)) a000040_list) !! 3
-- Reinhard Zumkeller, Feb 08 2015
CROSSREFS
Cf. A000040.
Cf. A254858.
Sequence in context: A083383 A221574 A082289 * A213387 A215184 A136429
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset fixed by Reinhard Zumkeller, Feb 08 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 16:12 EDT 2024. Contains 371254 sequences. (Running on oeis4.)