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.

Previous Showing 11-11 of 11 results.

A364242 a(n) is the smallest positive integer such that a(n) and a(n)+2 are both products of n distinct prime factors.

Original entry on oeis.org

3, 33, 663, 18445, 887313, 84946015, 3086525013, 557027507463, 31110090768183, 3404401335645583, 609352762511672905
Offset: 1

Views

Author

Tomek Czajka, Jul 15 2023

Keywords

Examples

			a(2) = 33 = 3 * 11, a(2) + 2 = 35 = 5 * 7.
a(3) = 663 = 3 * 13 * 17, a(3) + 2 = 665 = 5 * 7 * 19.
		

Crossrefs

Cf. A052215.
Subsequence of A005117.

Programs

  • PARI
    isok(k, n) = (omega(k)==n) && (omega(k+2)==n) && issquarefree(k) && issquarefree(k+2)
    a(n) = my(k=1); while (!isok(k, n), k++); k; \\ Michel Marcus, Jul 16 2023
Previous Showing 11-11 of 11 results.