cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A363013 a(n) is the number of prime factors (counted with multiplicity) of the n-th cubefull number (A036966).

Original entry on oeis.org

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

Views

Author

Amiram Eldar, May 13 2023

Keywords

Crossrefs

Similar sequences: A072047, A076399, A360729.

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) = A001222(A036966(n)).
a(n) >= 3, for n > 1.
Sum_{A036966(k) < x} a(k) = 3*c*x^(1/3)*log(log(x)) + (3*(B_2 - log(2)) + Sum_{p prime} ((4*p^(1/3)+5)/(p^(5/3)+p^(1/3)+1)))*c*x^(1/3) + O(x^(1/3)/sqrt(log(x))), where B_2 = A083342 and c = A362974 (Jakimczuk and Lalín, 2022). [corrected Sep 21 2024]