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.

A328014 Numbers whose powerful part (A057521) is larger than their powerfree part (A055231).

Original entry on oeis.org

4, 8, 9, 12, 16, 18, 24, 25, 27, 32, 36, 40, 45, 48, 49, 50, 54, 56, 63, 64, 72, 75, 80, 81, 96, 98, 100, 108, 112, 121, 125, 128, 135, 144, 147, 150, 160, 162, 169, 175, 176, 180, 189, 192, 196, 200, 208, 216, 224, 225, 240, 242, 243, 245, 250, 252, 256, 270
Offset: 1

Views

Author

Amiram Eldar, Oct 01 2019

Keywords

Comments

Differs from A122145(n) at n >= 25.
Cloutier et al. showed that the number of terms of this sequence below x is D0 * x^(3/4) + O(x^(2/3)*log(x)), where D0 is a constant given in A328015.

Examples

			12 is in the sequence since A057521(12) = 4 > A055231(12) = 3.
		

Crossrefs

Programs

  • Mathematica
    funp[p_, e_] := If[e > 1, p^e, 1]; pow[n_] := Times @@ (funp @@@ FactorInteger[n]); aQ[n_] := pow[n] > n/pow[n]; Select[Range[1000], aQ]
  • PARI
    pful(f) = prod(i=1, #f~, if(f[i, 2]>1, f[i, 1]^f[i, 2], 1)); \\ A057521
    pfree(f) = for (k=1, #f~, if (f[k, 2] > 1, f[k, 2] = 0); ); factorback(f); \\ A055231
    isok(n) = my(f=factor(n)); pful(f) > pfree(f); \\ Michel Marcus, Oct 02 2019