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!)
A055467 Nonprime numbers k for which phi(k) + sigma(k) is an integer multiple of the cube of the number of divisors of k. 4
1, 95, 99, 121, 125, 159, 287, 319, 415, 447, 511, 543, 654, 671, 703, 767, 799, 831, 895, 959, 1055, 1119, 1247, 1343, 1390, 1495, 1535, 1631, 1727, 1849, 1919, 1983, 2043, 2047, 2060, 2261, 2271, 2335, 2463, 2495, 2559, 2623, 2815, 2828, 2883, 2911 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Makowski proved that phi(k) + sigma(k) = k*d(k) if and only if k is a prime (see in Sivaramakrishnan, Chapter I, page 8, Theorem 3). Generally, when phi(k) + sigma(k) = m*d(k) there are special cases in which phi(k) + sigma(k) is divisible by higher powers of the number of divisors d(k).
This sequence is infinite: it includes all the semiprimes p*q such that p == 1 (mod 32), and q == 31 (mod 32). - Amiram Eldar, Mar 25 2024
REFERENCES
R. Sivaramakrishnan, Classical Theory of Arithmetic Functions, Marcel Dekker, Inc., New York and Basel, 1989.
LINKS
A. Makowski, Problem 339, Elemente der Mathematik, Vol. 13 (1958), p. 115; alternative link.
C. A. Nicol, Problem E 1674, The American Mathematical Monthly, Vol. 71, No. 3 (1964), p. 317; Another characterization of prime number, Solutions to Problem E 1674 by Martin J. Cohen and J. A. Fridy, ibid., Vol. 72, No. 2 (1965), pp. 186-187.
FORMULA
Integer solutions of phi(x) + sigma(x) = m * d(x)^3 or A000010(x) + A000203(x) = m * A000005(x)^3, where m is an integer.
EXAMPLE
95 is a term since it has 4 divisors, phi(95) = 72, sigma(95) = 120, and 72 + 120 = 192 = 3 * 4^3.
MATHEMATICA
Select[Range[10000], ! PrimeQ[#] && Mod[EulerPhi[#] + DivisorSigma[1, #], DivisorSigma[0, #]^3] == 0 &] (* Matthew House, Dec 28 2016 *)
PROG
(PARI) is(n) = {my(f = factor(n)); f[, 2] != [1]~ && (eulerphi(f) + sigma(f)) % numdiv(f)^3 == 0; } \\ Amiram Eldar, Mar 25 2024
CROSSREFS
Sequence in context: A300007 A067266 A171403 * A057654 A338601 A338582
KEYWORD
nonn
AUTHOR
Labos Elemer, Jun 27 2000
EXTENSIONS
Definition corrected by Matthew House, Dec 28 2016
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)