OFFSET
1,1
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1) = 2 because the first subset is [1,2] (length = 2) and the sum of primes contained in it is 2.
a(2) = 8 because the second subset is [3,4,5] (length = 3) and the sum of primes contained in it is 3 + 5 = 8.
a(3) = 7 because the third subset is [6,7,8,9,10] (length = 5) and the sum of primes contained in it is 7.
a(4) = 41 because the fourth subset is [11,12,13,14,15,16,17] (length = 7) and the sum of primes contained in it is 11 + 13 + 17 = 41.
MATHEMATICA
nterms=50; list = TakeList[Range[Sum[Prime[i], {i, nterms}]], Prime[Range[nterms]]]; Map[Total[Select[#, PrimeQ]]&, list]
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo Xausa, May 27 2021
STATUS
approved