A307980 Numbers k whose number of divisors is the square of the number of decimal digits of k.
1, 10, 14, 15, 21, 22, 26, 27, 33, 34, 35, 38, 39, 46, 51, 55, 57, 58, 62, 65, 69, 74, 77, 82, 85, 86, 87, 91, 93, 94, 95, 100, 196, 225, 256, 441, 484, 676, 1000, 1026, 1032, 1064, 1110, 1122, 1128, 1144, 1155, 1160, 1190, 1218, 1230, 1240, 1242, 1254, 1272, 1288, 1290, 1302, 1326, 1330, 1365, 1408
Offset: 1
Examples
65 is a term with 2 digits and 4 divisors: {1, 5, 13, 65}. 484 is a term with 3 digits and 9 divisors: {1, 2, 4, 11, 22, 44, 121, 242, 484}.
Links
- Sean A. Irvine, Java program (github)
Crossrefs
Programs
-
Magma
[n:n in [1..1500]|NumberOfDivisors(n) eq (#Intseq(n))^2]; // Marius A. Burtea, May 09 2019
-
PARI
is(n) = numdiv(n) == #digits(n)^2 \\ David A. Corneth, May 08 2019
Comments