OFFSET
1,1
COMMENTS
This sequence is also the union of
(1) numbers of the form p*(2p-1) where p is prime and 2p-1 is the square of a prime (this sequence begins 45, 325, 7381, 65341, 354061, ...),
(2) numbers of the form p^2*(2p^2 - 1) where both p and 2p^2 - 1 are prime (this sequence begins 28, 153, 4753, 29161, ...), and
(3) numbers of the form p^2*(2p^2 + 1) where both p and 2p^2 + 1 are prime (the only such number is 171).
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..10000
EXAMPLE
28 = 2^2 * 7, so it has 6 divisors: {1, 2, 4, 7, 14, 28};
45 = 3^2 * 5, so it has 6 divisors: {1, 3, 5, 9, 15, 45};
171 = 3^2 * 19, so it has 6 divisors: {1, 3, 9, 19, 57, 171}.
MATHEMATICA
Select[Array[PolygonalNumber, 10^5], DivisorSigma[0, #] == 6 &] (* Michael De Vlieger, Dec 09 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon E. Schoenfield, Dec 08 2017
STATUS
approved