login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A254325
Sequence of semiprimes with all cumulating sums being semiprime.
1
4, 6, 15, 26, 55, 111, 237, 469, 926, 1858, 3711, 7419, 14849, 29693, 59435, 118821, 237722, 475378, 950738, 1901474, 3802967, 7605921, 15211942, 30423869, 60847667, 121695326, 243390743, 486781401, 973562795, 1947125641, 3894251303, 7788502531, 15577005118
OFFSET
1,1
COMMENTS
a(1)=4, then a(n) is the least semiprime > a(n-1) such that a(1)+...+a(n) is semiprime.
LINKS
EXAMPLE
4+6=10=2*5, 10+15=25=5*5, 25+26=51=3*17.
MATHEMATICA
s={4}; a=4; Do[m=a+1; While[2!=PrimeOmega[m]||2!=PrimeOmega[m+a], m++]; AppendTo[s, m]; a=m+a, {50}]; s
PROG
(PARI){s=[4]; a=4;
for(k=1, 50, m=a+1while(2<>bigomega(m)||2<>bigomega(m+a), m++);
s=concat(s, m); a=m+a); s}
CROSSREFS
Cf. A001358 (semiprimes), A065516.
Sequence in context: A128620 A358438 A045907 * A351145 A034299 A007135
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 05 2015
STATUS
approved