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.

A375668 The maximum exponent in the prime factorization of the 7-rough numbers (A007775).

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1

Views

Author

Amiram Eldar, Aug 23 2024

Keywords

Crossrefs

Programs

  • Mathematica
    If[# == 1, 0, Max[FactorInteger[#][[;; , 2]]]] & /@ Select[Range[300], CoprimeQ[#, 30] &]
  • PARI
    lista(nmax) = print1(0, ", "); for(n = 2, nmax, if(gcd(n, 30) == 1, print1(vecmax(factor(n)[,2]), ", ")));

Formula

a(n) = A051903(A007775(n)).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 1 + Sum_{k>=2} (1 - 1/((1-1/2^k) * (1-1/3^k) * (1-1/5^k) * zeta(k))) = 1.05546104674564363968... .
In general, the asymptotic mean of the maximum exponent in the prime factorization of the p-rough numbers (numbers that are not divisible by any prime smaller than p) is 1 + Sum_{k>=2} (1 - 1/(zeta(k) * Product_{primes q < p} (1-1/q^k))).