A107925 Odd numbers k such that k^2 is an arithmetic number.
1, 7, 13, 19, 31, 37, 43, 61, 67, 73, 79, 91, 97, 103, 109, 121, 127, 133, 139, 151, 157, 163, 181, 193, 199, 211, 217, 223, 229, 241, 247, 259, 271, 277, 283, 301, 307, 313, 331, 337, 349, 367, 373, 379, 397, 403, 409, 421, 427, 433, 439, 457, 463, 469, 481
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Jianing Song, Notes on A107925
Programs
-
Mathematica
Select[Range[1, 500, 2], Mod[DivisorSigma[1, #^2], DivisorSigma[0, #^2]]==0&]
Comments