A386806 Numbers that have exactly three exponents in their prime factorization that are equal to 4.
810000, 3111696, 5670000, 8910000, 10530000, 13770000, 15390000, 15558480, 18630000, 18974736, 23490000, 24010000, 25110000, 29970000, 33210000, 34228656, 34830000, 37015056, 38070000, 39690000, 40452048, 42930000, 47790000, 49410000, 52898832, 54270000, 57510000
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Ertan Elma and Greg Martin, Distribution of the number of prime factors with a given multiplicity, Canadian Mathematical Bulletin, Vol. 67, No. 4 (2024), pp. 1107-1122; arXiv preprint, arXiv:2406.04574 [math.NT], 2024.
- Index entries for sequences computed from indices in prime factorization.
Crossrefs
Programs
-
Mathematica
seq[lim_] := Module[{s = {}, sqfs = Select[Range[Surd[lim, 4]], SquareFreeQ[#] && PrimeNu[#] == 3 &]}, Do[s = Join[s, sqf^4 * Select[Range[lim/sqf^4], CoprimeQ[#, sqf] && !MemberQ[FactorInteger[#][[;; , 2]], 4] &]], {sqf, sqfs}]; Union[s]]; seq[6*10^7]
-
PARI
isok(k) = vecsum(apply(x -> if(x == 4, 1, 0), factor(k)[, 2])) == 3;
Comments