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.

A065655 Composite numbers k such that sigma(k)*(phi(k) + 2) is a square.

Original entry on oeis.org

28, 90, 156, 184, 374, 1855, 2162, 2170, 2280, 2376, 2415, 2665, 3160, 4970, 5270, 5740, 6402, 6494, 7414, 8400, 9118, 10656, 11155, 12400, 14632, 14910, 15010, 15906, 18183, 18792, 22648, 24645, 24734, 24920, 25844, 26670, 27478, 28990
Offset: 1

Views

Author

Labos Elemer, Nov 12 2001

Keywords

Examples

			Since for a prime p, sigma(p)*(phi(p) + 2) = (p+1)*((p-1) + 2) = (p+1)^2 is a square, all primes are solutions.
For k = 28, sigma(28) = 56, phi(28) = 12, 56*(12 + 2) = 784 = 28*28, so 28 is a composite solution.
		

Crossrefs

Programs

  • Mathematica
    Select[Range@ 30000, Function[n, And[CompositeQ@ n, IntegerQ@ Sqrt[# EulerPhi@ n + 2 #] &@ DivisorSigma[1, n]]]] (* Michael De Vlieger, Mar 18 2017 *)
  • PARI
    is(k) = if(k == 1 || isprime(k), 0, my(f = factor(k), s = sigma(f), p = eulerphi(f)); issquare(s * (p+2))); \\ Amiram Eldar, Nov 12 2024