A327774 Composite numbers m such that tau_k(m) = m for some k, where tau_k is the k-th Piltz divisor function (A077592).
18, 36, 75, 100, 200, 224, 225, 441, 560, 1183, 1344, 1920, 3025, 8281, 26011, 34606, 64009, 72030, 76895, 115351, 197173, 280041, 494209, 538265, 1168561, 1947271, 2927521, 3575881, 3613153, 3780295, 4492125, 7295401, 10665331, 11580409, 12511291, 13476375, 15381133
Offset: 1
Keywords
Examples
18 is in the sequence since tau_3(18) = A007425(18) = 18.
Crossrefs
Programs
-
Mathematica
fun[e_, k_] := Times @@ (Binomial[# + k - 1, k - 1] & /@ e); tau[n_, k_] := fun[ FactorInteger[n][[;; , 2]], k]; aQ[n_] := CompositeQ[n] && Module[{k = 2}, While[(t = tau[n, k]) < n, k++]; t == n]; Select[Range[10^5], aQ]
Comments