login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A065655 Composite numbers n such that sigma(n)*phi(n) + 2*sigma(n) is a square. 5
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Since (p+1)(p-1) + 2(p+1) = p^2 + 2p + 1 = (p+1)^2 is a square, all primes are solutions. For n = 28, sigma(28) = 56, phi(28) = 12, 56*12 + 2*56 = 784 = 28*28, so 28 is a composite solution.
MATHEMATICA
Select[Range@ 30000, Function[n, And[CompositeQ@ n, IntegerQ@ Sqrt[# EulerPhi@ n + 2 #] &@ DivisorSigma[1, n]]]] (* Michael De Vlieger, Mar 18 2017 *)
PROG
(PARI) { n=0; for (m=1, 10^9, if (isprime(m), next); s=sigma(m)*eulerphi(m) + 2*sigma(m); if (issquare(s), write("b065655.txt", n++, " ", m); if (n==500, return)) ) } \\ Harry J. Smith, Oct 25 2009
CROSSREFS
Sequence in context: A042546 A164689 A096384 * A341623 A272399 A113958
KEYWORD
nonn
AUTHOR
Labos Elemer, Nov 12 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)