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”).

A046871
Numbers k such that sigma_2(k) divides sigma_4(k).
5
1, 4, 9, 16, 20, 25, 36, 48, 49, 64, 81, 100, 121, 144, 162, 169, 180, 196, 225, 245, 256, 289, 324, 361, 400, 432, 441, 484, 500, 529, 576, 605, 625, 648, 676, 729, 784, 841, 900, 931, 961, 980, 1024, 1089, 1156, 1200, 1225, 1280, 1296, 1369, 1444, 1521
OFFSET
1,2
COMMENTS
sigma_2(k) is the sum of the squares of the divisors of k (A001157).
sigma_4(k) is the sum of the 4th powers of the divisors of k (A001159).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Paolo P. Lava)
EXAMPLE
k = a(8) = 48 of which divisor power sums for powers 0, 1, 2, 3, 4 are 10, 124, 3410, 131068, 5732210, respectively. Here sigma_2(k) = 3410 and sigma_4(k) = 3410*1681.
MATHEMATICA
Select[Range@ 1600, Divisible[DivisorSigma[4, #], DivisorSigma[2, #]] &] (* Michael De Vlieger, May 20 2017 *)
PROG
(Magma) [n: n in [1..1600] | IsZero(DivisorSigma(4, n) mod DivisorSigma(2, n))]; // Bruno Berselli, Apr 10 2013
(PARI) isok(n) = !(sigma(n, 4) % sigma(n, 2)); \\ Michel Marcus, May 21 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved