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.

A383007 Exponent of the highest power of 2 dividing the n-th cubefull number.

Original entry on oeis.org

0, 3, 4, 0, 5, 6, 0, 0, 7, 3, 0, 8, 0, 4, 9, 0, 3, 0, 5, 3, 10, 4, 0, 6, 3, 4, 11, 0, 0, 0, 5, 3, 0, 0, 7, 4, 5, 12, 0, 3, 6, 4, 3, 0, 0, 8, 5, 6, 13, 0, 4, 0, 7, 3, 5, 4, 0, 9, 0, 6, 0, 7, 14, 0, 0, 3, 3, 3, 0, 5, 8, 4, 6, 5, 0, 3, 3, 10, 0, 0, 0, 0, 7, 8, 15
Offset: 1

Views

Author

Amiram Eldar, Apr 12 2025

Keywords

Crossrefs

Programs

  • Mathematica
    IntegerExponent[Select[Range[100000], # == 1 || Min[FactorInteger[#][[;; , 2]]] > 2 &], 2]
  • PARI
    iscubefull(k) = if(k == 1, 1, my(e = factor(k)[, 2]); vecmin(e) > 2);
    list(lim) = for(k = 1, lim, if(iscubefull(k), print1(valuation(k, 2), ", ")));

Formula

a(n) = A007814(A036966(n)).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 2 + 2^(1/3) + 2^(2/3) = 4.847322... .