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.

A370328 The number of powerful divisors of the powerful numbers.

Original entry on oeis.org

1, 2, 3, 2, 4, 2, 3, 5, 4, 2, 6, 6, 4, 4, 6, 2, 3, 7, 8, 2, 4, 6, 9, 4, 5, 8, 10, 2, 8, 3, 2, 6, 8, 12, 4, 4, 6, 9, 2, 12, 4, 12, 6, 4, 6, 8, 10, 2, 15, 8, 2, 6, 10, 9, 10, 4, 6, 14, 4, 4, 16, 6, 3, 6, 2, 6, 4, 4, 10, 12, 2, 18, 8, 12, 2, 8, 15, 12, 8, 11, 4, 7
Offset: 1

Views

Author

Amiram Eldar, Feb 15 2024

Keywords

Comments

The product of the exponents of the prime factorization of the powerful numbers.

Crossrefs

Programs

  • Mathematica
    f[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, If[n == 1 || Min[e] > 1, Times @@ e, Nothing]]; Array[f, 2500]
  • PARI
    lista(kmax) = {my(e); for(k = 1, kmax, e = factor(k)[,2]; if(k == 1 || vecmin(e) > 1, print1(vecprod(e), ", ")));}

Formula

a(n) = A005361(A001694(n)).
a(n) = A000005(A306458(n)).