A325446 The unitary version of Kalmár's function: number of ordered factorizations of n into powers of distinct primes.
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
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
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]