This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A254325 #30 Feb 08 2015 07:15:15 %S A254325 4,6,15,26,55,111,237,469,926,1858,3711,7419,14849,29693,59435,118821, %T A254325 237722,475378,950738,1901474,3802967,7605921,15211942,30423869, %U A254325 60847667,121695326,243390743,486781401,973562795,1947125641,3894251303,7788502531,15577005118 %N A254325 Sequence of semiprimes with all cumulating sums being semiprime. %C A254325 a(1)=4, then a(n) is the least semiprime > a(n-1) such that a(1)+...+a(n) is semiprime. %H A254325 Zak Seidov, <a href="/A254325/b254325.txt">Table of n, a(n) for n = 1..89</a> %e A254325 4+6=10=2*5, 10+15=25=5*5, 25+26=51=3*17. %t A254325 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 %o A254325 (PARI){s=[4];a=4; %o A254325 for(k=1,50,m=a+1while(2<>bigomega(m)||2<>bigomega(m+a),m++); %o A254325 s=concat(s, m);a=m+a);s} %Y A254325 Cf. A001358 (semiprimes), A065516. %K A254325 nonn %O A254325 1,1 %A A254325 _Zak Seidov_, Feb 05 2015