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.

A325446 The unitary version of Kalmár's function: number of ordered factorizations of n into powers of distinct primes.

Original entry on oeis.org

1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 3, 1, 3, 3, 1, 1, 3, 1, 3, 3, 3, 1, 3, 1, 3, 1, 3, 1, 13, 1, 1, 3, 3, 3, 3, 1, 3, 3, 3, 1, 13, 1, 3, 3, 3, 1, 3, 1, 3, 3, 3, 1, 3, 3, 3, 3, 3, 1, 13, 1, 3, 3, 1, 3, 13, 1, 3, 3, 13, 1, 3, 1, 3, 3, 3, 3, 13, 1, 3, 1, 3, 1, 13, 3
Offset: 1

Views

Author

Amiram Eldar, Sep 06 2019

Keywords

Crossrefs

Programs

  • Mathematica
    f[0] = 1; f[n_] := f[n] = Sum[Binomial[n, k] * f[n - k], {k, 1, n}]; a[n_] := f[PrimeNu[n]]; Array[a, 100]

Formula

a(1) = 1 and a(n) = Sum_{d||n} a(d), where d||n are the unitary divisors of n (d such that gcd(d, n/d) = 1).
a(n) = A000670(A001221(n)).
a(n) = A074206(n) for squarefree n (A005117).