A232354 Numbers k that divide sigma(k^2) where sigma is the sum of divisors function (A000203).
1, 39, 793, 2379, 7137, 13167, 76921, 78507, 230763, 238887, 549549, 692289, 863577, 1491633, 1672209, 2076867, 4317885, 7615179, 8329831, 10441431, 23402223, 24989493, 37776123, 53306253, 53695813, 55871145, 74968479, 83766969, 133854435, 144688401, 161087439, 189437391
Offset: 1
Keywords
Links
- Donovan Johnson, Table of n, a(n) for n = 1..200
- Jose Arnaldo Bebita Dris, A new approach to odd perfect numbers via GCDs, arXiv:2202.08116 [math.NT], 2022.
Programs
-
Mathematica
Select[Range[10^5], Divisible[DivisorSigma[1, #^2], #] &] (* Alonso del Arte, Dec 06 2013 *)
-
PARI
isok(n) = (sigma(n^2) % n) == 0; \\ Michel Marcus, Nov 23 2013
Formula
A065764(a(n)) mod a(n) = 0.
Comments