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.

A365492 The number of divisors of the smallest 4th power divisible by n.

Original entry on oeis.org

1, 5, 5, 5, 5, 25, 5, 5, 5, 25, 5, 25, 5, 25, 25, 5, 5, 25, 5, 25, 25, 25, 5, 25, 5, 25, 5, 25, 5, 125, 5, 9, 25, 25, 25, 25, 5, 25, 25, 25, 5, 125, 5, 25, 25, 25, 5, 25, 5, 25, 25, 25, 5, 25, 25, 25, 25, 25, 5, 125, 5, 25, 25, 9, 25, 125, 5, 25, 25, 125, 5, 25
Offset: 1

Views

Author

Amiram Eldar, Sep 05 2023

Keywords

Comments

First differs from A082476 at n = 32.
The number of divisors of the 4th root of the smallest 4th power divisible by n, A053166(n), is A365491(n).

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := 4*Ceiling[e/4] + 1; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
  • PARI
    a(n) = vecprod(apply(x -> 4*((x-1)\4) + 5, factor(n)[, 2]));

Formula

a(n) = A000005(A053167(n)).
Multiplicative with a(p^e) = 4*ceiling(e/4) + 1.
Dirichlet g.f.: zeta(s) * zeta(4*s) * Product_{p prime} (1 + 4/p^s - 1/p^(4*s)).