OFFSET
2,5
COMMENTS
a(n) is the greatest k such that 2*s(n) >= s(n+k), where s(n) is the n-th partial sum of primes.
FORMULA
a(n) = A231152(n) - 1.
EXAMPLE
5 <= 2 + 3 < 5 + 7, so a(2) = 1.
19 + 23 <= 2 + 3 + 5 + 7 + 11 + 13 + 17 < 19 + 23 + 29, so a(7) = 2.
MATHEMATICA
test = 0; Table[test = test + Prime[n]; tmp = 0; NestWhile[# + 1 &, n, test >= (tmp = tmp + Prime[#]) &] - n, {n, 1, 80}] (* Peter J. C. Moses, Nov 02 2013 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Nov 09 2013
STATUS
approved