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.

Showing 1-1 of 1 results.

A364766 Products k of 4 distinct primes (or tetraprimes) such that none of k-2, k-1, k+1 and k+2 is squarefree.

Original entry on oeis.org

3774, 6726, 10934, 11726, 12426, 13674, 15042, 16226, 17630, 17974, 18278, 18998, 21574, 23374, 23426, 24038, 27710, 27874, 28826, 32390, 34390, 35074, 35126, 37630, 37774, 38170, 38626, 41210, 41426, 46342, 46774, 46990, 47874, 50518, 50806, 51794, 53074, 53846
Offset: 1

Views

Author

Massimo Kofler, Aug 06 2023

Keywords

Examples

			3772 = 2^2 * 23 * 41, 3773 = 7^3 * 11, 3774 = 2 * 3 * 17 * 37, 3775 = 5^2 * 151, 3776 = 2^6 * 59, so 3774 is a term.
6724 = 2^2 * 41^2, 6725 = 5^2 * 269, 6726 = 2 * 3 * 19 * 59, 6727 = 7 * 31^2, 6728 = 2^3 * 29^2, so 6726 is a term.
		

Crossrefs

Cf. A013929, A046386. Subsequence of A364141.

Programs

  • Mathematica
    Select[Range[55000], FactorInteger[#][[;; , 2]] == {1, 1, 1, 1} && !AnyTrue[# + {-2, -1, 1, 2}, SquareFreeQ] &] (* Amiram Eldar, Aug 06 2023 *)
Showing 1-1 of 1 results.