A382065 Exponentially refactorable numbers: numbers whose exponents in their canonical prime factorization are all refactorable numbers (A033950).
1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
refQ[k_] := Divisible[k, DivisorSigma[0, k]]; q[k_] := AllTrue[FactorInteger[k][[;; , 2]], refQ]; Select[Range[100], q]
-
PARI
isref(n) = !(n % numdiv(n)); isok(k) = {my(e = factor(k)[, 2]); for(i = 1, #e, if(!isref(e[i]), return(0))); 1; }
Comments