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!)
A015763 Numbers k such that phi(k) divides sigma_5(k). 14
1, 2, 3, 6, 12, 14, 15, 30, 35, 42, 46, 56, 70, 78, 105, 134, 138, 140, 161, 168, 184, 190, 210, 230, 248, 264, 270, 299, 322, 357, 402, 414, 418, 420, 483, 552, 570, 594, 598, 616, 623, 630, 644, 670, 690, 714, 744, 805, 812, 840, 874, 897, 910 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
sigma_5(n) is the sum of the 5th powers of the divisors of n.
LINKS
EXAMPLE
sigma_5(12) = 1^5 + 2^5 + 3^5 + 4^5 + 6^5 + 12^5 = 257908. phi(12) = 4. sigma_5(12) = 257908 is divisible by phi(12) = 4 so 12 is in the sequence. - David A. Corneth, Aug 24 2019
MATHEMATICA
Select[Range[910], Divisible[DivisorSigma[5, #], EulerPhi[#]] &] (* Jon Maiga, Aug 24 2019 *)
PROG
(PARI) isok(n) = !(sigma(n, 5) % eulerphi(n)); \\ Michel Marcus, Aug 24 2019
(Magma) [k:k in [1..1000]| DivisorSigma(5, k) mod EulerPhi(k) eq 0]; // Marius A. Burtea, Aug 24 2019
CROSSREFS
Sequence in context: A015774 A015767 A015761 * A015769 A015765 A015771
KEYWORD
nonn,easy
AUTHOR
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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)