OFFSET
1,6
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Sourabhashis Das, Wentang Kuo, and Yu-Ru Liu, Distribution of omega(n) over h-free and h-full numbers, arXiv:2409.10430 [math.NT], 2024. See Theorem 1.1.
FORMULA
MATHEMATICA
f[k_] := Module[{e = If[k == 1, {}, FactorInteger[k][[;; , 2]]]}, If[AllTrue[e, # < 3 &], Length[e], Nothing]]; Array[f, 150]
PROG
(PARI) lista(kmax) = {my(e, is); for(k = 1, kmax, e = factor(k)[, 2]; is = 1; for(i = 1, #e, if(e[i] > 2, is = 0; break)); if(is, print1(#e, ", "))); }
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Sep 21 2024
STATUS
approved