A292989 Triangular numbers having exactly 6 divisors.
28, 45, 153, 171, 325, 4753, 7381, 29161, 56953, 65341, 166753, 354061, 5649841, 6060421, 6835753, 6924781, 12708361, 19478161, 24231241, 52035301, 56791153, 147258541, 186660181, 282304441, 326081953, 520273153, 536657941, 704531953, 784139401, 1215121753
Offset: 1
Keywords
Examples
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}.
Links
- Jon E. Schoenfield, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Select[Array[PolygonalNumber, 10^5], DivisorSigma[0, #] == 6 &] (* Michael De Vlieger, Dec 09 2017 *)
Comments