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.

A306882 Even numbers k such that phi(m) = k^2 has no solution.

Original entry on oeis.org

22, 34, 38, 46, 58, 62, 76, 78, 82, 86, 92, 98, 102, 106, 118, 122, 138, 142, 152, 154, 158, 164, 166, 172, 178, 182, 190, 194, 202, 212, 214, 218, 226, 238, 244, 254, 258, 262, 266, 274, 278, 282, 298, 302, 304, 310, 316, 318, 322, 328, 332, 334, 338, 344, 346, 356, 358, 362
Offset: 1

Views

Author

Bernard Schott, Mar 15 2019

Keywords

Comments

In the link, P. Pollack and C. Pomerance "show that almost all squares are missing from the range of Euler's phi-function".
Except for m=1 and m=2, phi(m) is always even, so, the odd numbers >= 3 are not included in the data for clarity.
Includes 2*p if p is a prime not in A052291. - Robert Israel, Apr 10 2019

Examples

			phi(489) = 18^2, phi(401) = 20^2, phi(577) = 24^2, phi(677) = 26^2, but there is no integer m such that phi(m) = 22^2 = 484.
		

Crossrefs

Programs

  • Maple
    select(t -> numtheory:-invphi(t^2)=[], [seq(i,i=2..400,2)]);  # Robert Israel, Apr 10 2019
  • PARI
    isok(n) = !(n%2) && !istotient(n^2); \\ Michel Marcus, Mar 15 2019