OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Rafael Jakimczuk and Matilde Lalín, The Number of Prime Factors on Average in Certain Integer Sequences, Journal of Integer Sequences, Vol. 25 (2022), Article 22.2.3.
FORMULA
a(n) >= 3, for n > 1.
MATHEMATICA
PrimeOmega[Select[Range[10000], # == 1 || Min[FactorInteger[#][[;; , 2]]] > 2 &]]
PROG
(PARI) iscubefull(n) = n==1 || vecmin(factor(n)[, 2]) > 2;
apply(bigomega, select(iscubefull, [1..10000]))
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 13 2023
STATUS
approved