A140362 Semiprimes pq that divide the sum of the squares of their divisors, 1+p^2+q^2+(pq)^2.
10, 65, 20737
Offset: 1
Examples
10 divides (1^2 + 2^2 + 5^2) giving 3 - the number of proper divisors of semiprime 10. 65 divides (1^2 + 5^2 + 13^2) giving 3 - the number of proper divisors of semiprime 65. 20737 divides (1^2 + 89^2 + 233^2) giving 3 - the number of proper divisors of semiprime 20737.
Links
- T. D. Noe, Table of n, a(n) for n=1..5
- T. Cai, D. Chen, and Y. Zhang, Perfect numbers and Fibonacci primes, arXiv:1310.0898 [math.NT], 2013-2014.
- T. Cai, D. Chen, and Y. Zhang, Perfect numbers and Fibonacci primes (II), arXiv:1406.5684 [math.NT], 2014 (see case m=1 in Table 1).
Programs
-
PARI
isok(n) = sigma(n, 2) - n^2 == 3*n; \\ Michel Marcus, Jun 24 2014
Comments