A176359 Numbers with at least three 3s in their prime signature.
27000, 74088, 189000, 287496, 297000, 343000, 351000, 370440, 459000, 474552, 513000, 621000, 783000, 814968, 837000, 963144, 999000, 1029000, 1061208, 1107000, 1157625, 1161000, 1259496, 1269000, 1323000, 1331000, 1407672, 1431000, 1437480, 1481544, 1593000, 1647000, 1704024, 1809000, 1852200, 1917000, 1971000, 2012472, 2079000, 2133000, 2148552
Offset: 1
Keywords
Examples
27000 is a term since 27000 = 2^3 * 3^3 * 5^3. 74088 is a term since 74088 = 2^3 * 5^3 * 7^3.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
f[n_]:=Count[Last/@FactorInteger[n],3]>2; Select[Range[10!],f]
-
PARI
is(n) = #select(x -> x == 3, factor(n)[, 2]) > 2; \\ Amiram Eldar, Jul 22 2024
Extensions
Edited by Matthew Vandermast, Dec 09 2010
Comments