login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A015764
Numbers n such that phi(n) | sigma_6(n).
9
1, 2, 3, 6, 22, 33, 66, 262, 750, 786, 8646, 56946, 222386, 626406, 667158, 737286, 1223123, 2446246, 2939046, 3669369, 6804006, 7338738, 27798250, 31684246, 41697375, 44970486, 53817126, 62128086, 76745867, 83394750, 95052738, 139991987, 153491734, 174684203
OFFSET
1,2
COMMENTS
sigma_6(n) is the sum of the 6th powers of the divisors of n.
MAPLE
with(numtheory): A015764:=n->`if`(sigma[6](n) mod phi(n) = 0, n, NULL): seq(A015764(n), n=1..10^5); # Wesley Ivan Hurt, Mar 10 2015
MATHEMATICA
Select[Range[10^5], Divisible[DivisorSigma[6, #], EulerPhi[#]] &] (* Amiram Eldar, Jan 20 2019 *)
KEYWORD
nonn
EXTENSIONS
More terms from Labos Elemer, May 03 2002
a(23)-a(34) from Amiram Eldar, Jan 20 2019
STATUS
approved