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.

A183094 a(n) = number of powerful divisors d (excluding 1) of n.

Original entry on oeis.org

0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 1, 0, 0, 0, 2, 1, 0, 2, 1, 0, 0, 0, 4, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 1, 1, 0, 0, 3, 1, 1, 0, 1, 0, 2, 0, 2, 0, 0, 0, 1, 0, 0, 1, 5, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 1, 1, 0, 0, 0, 3, 3, 0, 0, 1, 0, 0, 0, 2, 0, 1, 0, 1, 0, 0, 0, 4, 0, 1, 1, 3, 0, 0, 0, 2, 0
Offset: 1

Views

Author

Jaroslav Krizek, Dec 25 2010

Keywords

Comments

a(n) = number of divisors d of n from set A001694(m) - powerful numbers for m >=2.

Examples

			For n = 12, set of such divisors is {4}; a(12) = 1.
		

Crossrefs

Programs

  • Maple
    f:=  n -> convert(map(t->t[2], ifactors(n)[2]),`*`) - 1; # Robert Israel, Jul 14 2014
  • Mathematica
    powerfulQ[n_] := Min[ Last@# & /@ FactorInteger[n]] > 1; f[n_] := Length@ Select[ Divisors@ n, powerfulQ]; Array[f, 105] (* Robert G. Wilson v, Jul 14 2014 *)

Formula

a(n) = A000005(n) - A183095(n) = A005361(n) - 1.
a(1) = 0, a(p) = 0, a(pq) = 0, a(pq...z) = 0, a(p^k) = k-1, for p, q = primes, k = natural numbers, pq...z = product of k (k > 2) distinct primes p, q, ..., z.
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = zeta(2)*zeta(3)/zeta(6) - 1 = A082695 - 1 = 0.9435964368... . - Amiram Eldar, Jul 30 2022