OFFSET
1,1
COMMENTS
Each term is the sum of at least three consecutive terms of A006094.
A number that can be expressed as such a sum in more than one way is only listed once. The first such number is 50911291 = 547*557+...+1051*1061 = 1423*1427+...+1559*1567.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1) = 5*7+7*11+11*13 = 127.
a(2) = 5*7+7*11+11*13+13*17+17*19 = 491.
a(3) = 11*13+13*17+17*19+19*23+23*29 = 1201.
a(4) = 19*23+23*29+29*31 = 1427.
MAPLE
SP:= [seq(ithprime(i)*ithprime(i+1), i=1..100)]:
SSP:= ListTools:-PartialSums([0, op(SP)]):
select(t -> t <= SP[-1] and isprime(t),
{seq(seq(SSP[j]-SSP[i], i=1..j-3), j=4..nops(SSP))});
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Jan 10 2021
STATUS
approved