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.

A351411 Number of divisors of n not of the form p^p, p prime.

Original entry on oeis.org

1, 2, 2, 2, 2, 4, 2, 3, 3, 4, 2, 5, 2, 4, 4, 4, 2, 6, 2, 5, 4, 4, 2, 7, 3, 4, 3, 5, 2, 8, 2, 5, 4, 4, 4, 8, 2, 4, 4, 7, 2, 8, 2, 5, 6, 4, 2, 9, 3, 6, 4, 5, 2, 7, 4, 7, 4, 4, 2, 11, 2, 4, 6, 6, 4, 8, 2, 5, 4, 8, 2, 11, 2, 4, 6, 5, 4, 8, 2, 9, 4, 4, 2, 11, 4, 4, 4, 7, 2, 12, 4, 5, 4
Offset: 1

Views

Author

Wesley Ivan Hurt, Feb 10 2022

Keywords

Examples

			a(108) = 10; 2 of the 12 divisors of 108 are of the form p^p (p prime), namely 4 = 2^2 and 27 = 3^3; therefore a(108) = 12-2 = 10.
		

Crossrefs

Cf. A000005 (tau), A001221 (omega), A001222 (Omega), A007947 (rad).

Programs

  • Mathematica
    f1[p_, e_] := e + 1; f2[p_, e_] := If[e < p, 0, 1]; a[1] = 1; a[n_] := Times @@ f1 @@@ (f = FactorInteger[n]) - Plus @@ f2 @@@ f; Array[a, 100] (* Amiram Eldar, Oct 01 2023 *)
  • PARI
    a(n) = {my(f = factor(n)); vecprod(apply(x -> x+1, f[, 2])) - sum(i = 1, #f~, f[i, 2] >= f[i, 1]); } \\ Amiram Eldar, Oct 01 2023

Formula

a(n) = tau(n) - Sum_{d|n} [rad(d) = Omega(d)*[omega(d) = 1]], where [ ] is the Iverson bracket.
a(n) = A000005(n) - A129251(n).
Sum_{k=1..n} a(k) ~ n * (log(n) + c), where c = A147533 - A094289 = -0.1329269215... . Amiram Eldar, Oct 01 2023