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.

A375230 The total number of infinitary divisors of the infinitary divisors of n.

Original entry on oeis.org

1, 3, 3, 3, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 9, 3, 3, 9, 3, 9, 9, 9, 3, 27, 3, 9, 9, 9, 3, 27, 3, 9, 9, 9, 9, 9, 3, 9, 9, 27, 3, 27, 3, 9, 9, 9, 3, 9, 3, 9, 9, 9, 3, 27, 9, 27, 9, 9, 3, 27, 3, 9, 9, 9, 9, 27, 3, 9, 9, 27, 3, 27, 3, 9, 9, 9, 9, 27, 3, 9, 3, 9, 3, 27
Offset: 1

Views

Author

Amiram Eldar, Aug 06 2024

Keywords

Crossrefs

Similar sequences: A007425 (analogous with all the divisors), A074816 (unitary analog).

Programs

  • Mathematica
    f[p_, e_] := 3^DigitCount[e, 2, 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
  • PARI
    a(n) = vecprod(apply(x -> 3^hammingweight(x), factor(n)[,2]));

Formula

a(n) = Sum_{d infinitary divisor of n} A037445(d).
Multiplicative with a(p^e) = 3^A000120(e).
a(n) = 3^A064547(n).
a(n) = A007425(n) if and only if n is squarefree (A005117).
a(n) = A074816(n) if and only if n is in A138302.