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.

A132350 If n > 1 is a k-th power with k >= 2 then a(n) = 0, otherwise a(n) = 1.

Original entry on oeis.org

1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0
Offset: 1

Views

Author

N. J. A. Sloane, Nov 11 2007

Keywords

Examples

			a(4) = 0 because 4 = 2^2.
a(8) = 0 because 8 = 2^3.
a(12) = 1 because 12 is not a perfect power (though it is divisible by a perfect power).
		

Crossrefs

Programs

  • Haskell
    a132350 1 = 1
    a132350 n = 1 - a075802 n  -- Reinhard Zumkeller, Jun 14 2013
  • Mathematica
    Table[Boole[GCD@@FactorInteger[n][[All, 2]] == 1], {n, 100}] (* Alonso del Arte, May 28 2018 *)
  • PARI
    (a(n)=!ispower(n)); (r(nMax) = for(j=1,nMax,print1(!ispower(j)","))); r(100)
    

Formula

a(n) = 1 - A075802(n) for n >= 2. - R. J. Mathar, Nov 12 2007
Given the Möbius function mu(n) = A008683(n), a(n) = abs(mu(n)) unless n is in A303946. - Alonso del Arte, May 28 2018

Extensions

Edited by M. F. Hasler, Jun 01 2018