A363013 a(n) is the number of prime factors (counted with multiplicity) of the n-th cubefull number (A036966).
0, 3, 4, 3, 5, 6, 4, 3, 7, 6, 5, 8, 3, 7, 9, 4, 7, 6, 8, 6, 10, 8, 3, 9, 8, 7, 11, 7, 3, 4, 9, 6, 5, 6, 10, 9, 8, 12, 3, 7, 10, 7, 9, 8, 3, 11, 10, 9, 13, 6, 8, 7, 11, 6, 8, 10, 3, 12, 4, 11, 6, 10, 14, 5, 7, 10, 6, 7, 9, 9, 12, 7, 9, 11, 3, 8, 9, 13, 7, 4, 3
Offset: 1
Keywords
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.
Programs
-
Mathematica
PrimeOmega[Select[Range[10000], # == 1 || Min[FactorInteger[#][[;; , 2]]] > 2 &]]
-
PARI
iscubefull(n) = n==1 || vecmin(factor(n)[, 2]) > 2; apply(bigomega, select(iscubefull, [1..10000]))
Formula
a(n) >= 3, for n > 1.