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.

Showing 1-1 of 1 results.

A280988 Least k such that phi(k*n) is a perfect square, or 0 if no such k exists.

Original entry on oeis.org

1, 1, 4, 2, 1, 2, 9, 1, 7, 1, 41, 1, 21, 9, 4, 2, 1, 6, 3, 2, 3, 41, 89, 2, 5, 14, 4, 13, 113, 2, 143, 1, 25, 1, 9, 3, 1, 2, 7, 1, 11, 3, 49, 25, 7, 89, 1151, 1, 43, 5, 4, 7, 553, 2, 15, 9, 1, 113, 233, 1, 77, 122, 1, 2, 21, 25, 299, 2, 356, 9, 281, 6, 3, 1, 11, 1, 61, 6, 313
Offset: 1

Views

Author

Altug Alkan, Jan 12 2017

Keywords

Comments

Pollack and Pomerance proved that if phi(a) = b^m, then m = 2 occurs only on a set of density 0.

Examples

			a(11) = 41 because phi(k*11) is not a perfect square for 0 < k < 41 and phi(41*11) = 20^2.
		

Crossrefs

Programs

  • Maple
    f:= proc(n) local k;
        for k from 1 do
          if issqr(numtheory:-phi(k*n)) then return k fi
       od
    end proc:
    map(f, [$1..100]); # Robert Israel, Jan 12 2017
  • Mathematica
    a[n_] := Module[{k = 1}, While[!IntegerQ[Sqrt[EulerPhi[k*n]]], k++]; k]; Array[a, 80] (* Amiram Eldar, Jul 13 2019 *)
  • PARI
    a(n) = {my(k = 1); while (!issquare(eulerphi(k*n)), k++); k; }
Showing 1-1 of 1 results.