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 A092190 #18 Jan 06 2019 14:50:27 %S A092190 4,10,58,185,219,254,377,589,843,917,1247,1707,2157,2519,2642,2771, %T A092190 3755,4227,5078,5633,6433,6638,7053,9031,15469,16109,17414,18763, %U A092190 19109,21281,22421,23591,26827,28093,35489,35978,36471,37469,38987,41578,42634 %N A092190 Semiprimes that are the sum of the first n semiprimes for some n. %H A092190 Zak Seidov, <a href="/A092190/b092190.txt">Table of n, a(n) for n = 1..5000</a> %F A092190 Equals A062198 intersect A001358. - _M. F. Hasler_, Sep 23 2012 %e A092190 10 is a term because the sum of the first two semiprimes 4 and 6 is 10. %t A092190 s = Select[Range@ 40882, PrimeOmega@ # == 2 &]; Select[Accumulate[s[[1 ;; 164]]], PrimeOmega@ # == 2 &] (* _Michael De Vlieger_, Sep 21 2015 *) %o A092190 (PARI) is_A092190(N)={bigomega(N)==2 & is_A062198(N)} \\ _M. F. Hasler_, Sep 23 2012 %o A092190 (PARI) A092190(n,list=0,b=2)={my(s=0,N=0); while(n, until(bigomega(N++)==b,); bigomega(s+=N)==b & n-- & list & print1(s",")); s} \\ _M. F. Hasler_, Sep 23 2012 %Y A092190 Corresponding values of n: A092189. %K A092190 easy,nonn %O A092190 1,1 %A A092190 _Zak Seidov_, Feb 23 2004