A331667 Numbers m with a divisor d such that tau(d)^d = m.
1, 4, 19683, 65536, 2176782336, 101559956668416, 7958661109946400884391936
Offset: 1
Keywords
Examples
19683 is a term because 3^9 = 19683; 9 divides 19683, tau(9) = 3.
Programs
-
Magma
[n: n in [1..100000] | #[d: d in Divisors(n) | NumberOfDivisors(d)^d eq n] ge 1]
-
Mathematica
seqQ[n_] := AnyTrue[Divisors[n], DivisorSigma[0, #]^# == n &]; Select[Range[70000], seqQ] (* Amiram Eldar, Feb 28 2020 *)
-
PARI
isok(m) = fordiv(m, d, if (numdiv(d)^d == m, return (1));); \\ Michel Marcus, Mar 07 2020
Extensions
More terms from Giovanni Resta, Feb 28 2020
Comments