A338542 Numbers having exactly five non-unitary prime factors.
5336100, 7452900, 10672200, 12744900, 14905800, 15920100, 16008300, 18404100, 21344400, 22358700, 23328900, 25489800, 26680500, 29811600, 31472100, 31840200, 32016600, 36072036, 36808200, 37088100, 37264500, 37352700, 38234700, 39312900, 42380100, 42688800, 43956900
Offset: 1
Keywords
Examples
5336100 = 2^2 * 3^2 * 5^2 * 7^2 * 11^2 is a term since it has exactly 5 prime factors, 2, 3, 5, 7 and 11, that are non-unitary.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Carl Pomerance and Andrzej Schinzel, Multiplicative Properties of Sets of Residues, Moscow Journal of Combinatorics and Number Theory, Vol. 1, No. 1 (2011), pp. 52-66. See pp. 61-62.
Crossrefs
Programs
-
Mathematica
Select[Range[2*10^7], Count[FactorInteger[#][[;;,2]], _?(#1 > 1 &)] == 5 &]
Comments