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 A114988 #18 Jan 22 2025 05:20:45 %S A114988 15,35,42,45,51,65,75,77,78,84,86,91,110,115,122,123,126,130,135,138, %T A114988 141,146,153,154,156,161,168,172,175,185,187,194,201,206,209,219,220, %U A114988 221,222,225,230,234,235,244,245,252,259,260,266,267,276,282,285,292 %N A114988 Numbers whose sum of distinct prime factors is 3-almost prime. %C A114988 Numbers k such that A008472(k) is an element of A014612. %C A114988 This is the 3-almost prime analog of A114522. %H A114988 Charles R Greathouse IV, <a href="/A114988/b114988.txt">Table of n, a(n) for n = 1..10000</a> %e A114988 a(1) = 15 because 15 = 3 * 5 and 3 + 5 = 8 = 2^3 is a 3-almost prime. %e A114988 a(2) = 35 because 15 = 5 * 7 and 5 + 7 = 12 = 2^2 * 3 is a 3-almost prime. %e A114988 a(3) = 42 because 42 = 2 * 3 * 7 and 2 + 3 + 7 = 12 = 2^2 * 3 is a 3-almost prime. %e A114988 a(4) = 45 because 45 = 3^2 * 5 and 3 + 5 = 8 = 2^3 is a 3-almost prime. %e A114988 a(5) = 51 because 51 = 3 * 17 and 3 + 17 = 20 = 2^2 * 5 is a 3-almost prime. %e A114988 a(6) = 65 because 65 = 5 * 13 and 5 + 13 = 18 = 2 * 3^2 is a 3-almost prime. %t A114988 Select[Range[1000], PrimeOmega[ Total[ First /@ FactorInteger[#]]] == 3 &] (* _Giovanni Resta_, Jun 15 2016 *) %o A114988 (PARI) is(n)=bigomega(vecsum(factor(n)[,1]))==3 \\ _Charles R Greathouse IV_, Feb 05 2017 %Y A114988 Cf. A008472, A014612, A114522. %K A114988 easy,nonn %O A114988 1,1 %A A114988 _Jonathan Vos Post_, Feb 22 2006 %E A114988 Corrected and extended by _Giovanni Resta_, Jun 15 2016