OFFSET
1,1
COMMENTS
Natural numbers starting from 1,2,3,4,...
LINKS
Hieronymus Fischer, Table of n, a(n) for n = 1..1000
FORMULA
From Hieronymus Fischer, Sep 27 2012: (Start)
If we define A007504(0) := 0, then the formulas above are also true for n=1.
EXAMPLE
{1,2} #2 S=3;
{3,4,5} #3 S=12;
{6,7,8,9,10} #5 S=40;
{11,12,13,14,15,16,17} #7 S=98.
MAPLE
s:= proc(n) s(n):= `if`(n<1, 0, s(n-1)+ithprime(n)) end:
a:= n-> (t-> t(s(n))-t(s(n-1)))(i-> i*(i+1)/2):
seq(a(n), n=1..40); # Alois P. Heinz, Mar 22 2023
MATHEMATICA
Module[{nn=50, pr}, pr=Prime[Range[nn]]; Total/@TakeList[Range[ Total[ pr]], pr]](* Requires Mathematica version 11 or later *) (* Harvey P. Dale, Oct 01 2017 *)
PROG
(Python)
from itertools import islice
from sympy import nextprime
def A034956_gen(): # generator of terms
a, p = 0, 2
while True:
yield p*((a<<1)+p+1)>>1
a, p = a+p, nextprime(p)
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick De Geest, Oct 15 1998
STATUS
approved