OFFSET
1,2
COMMENTS
Partial sums of the difference between partial sums of the first n primes and n^2.
EXAMPLE
a(6) = Sum_{k=1..6} A108754(k) = 1+1+1+1+3+5 = 12.
MATHEMATICA
With[{nn = 48}, Accumulate@ Map[Subtract @@ # &, Transpose@ {Accumulate@ Prime@ Range[nn], Range[nn]^2}]] (* Michael De Vlieger, Apr 21 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jorge H. Costa, Apr 20 2019
EXTENSIONS
More terms from Michael De Vlieger, Apr 21 2019
STATUS
approved