cp's OEIS Frontend

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.

A335076 Numbers that are the sum of two consecutive semiprimes and also the sum of two consecutive 3-almost primes.

Original entry on oeis.org

47, 95, 115, 134, 151, 201, 233, 285, 301, 335, 346, 368, 461, 513, 527, 541, 576, 640, 713, 787, 801, 810, 864, 907, 935, 944, 1104, 1160, 1225, 1245, 1255, 1360, 1397, 1471, 1513, 1521, 1574, 1620, 1692, 1740, 1775, 1782, 1831, 1867, 1873, 1913, 1967, 2009
Offset: 1

Views

Author

Zak Seidov, May 22 2020

Keywords

Comments

Apparently the sequence is infinite.

Examples

			47 = 22 + 25 = A118717(8) = A001358(8) + A001358(9), and
47 = 20 + 27 = A014612(4) + A014612(5).
		

Crossrefs

Programs

  • Mathematica
    p[n_, m_] := Plus @@@ Partition[Select[Range[m], PrimeOmega[#] == n &], 2, 1]; m = 1100; Intersection[p[2, m], p[3, m]] (* Amiram Eldar, May 24 2020 *)