A368542 The number of divisors of n whose prime factors are all Mersenne primes (A000668).
1, 1, 2, 1, 1, 2, 2, 1, 3, 1, 1, 2, 1, 2, 2, 1, 1, 3, 1, 1, 4, 1, 1, 2, 1, 1, 4, 2, 1, 2, 2, 1, 2, 1, 2, 3, 1, 1, 2, 1, 1, 4, 1, 1, 3, 1, 1, 2, 3, 1, 2, 1, 1, 4, 1, 2, 2, 1, 1, 2, 1, 2, 6, 1, 1, 2, 1, 1, 2, 2, 1, 3, 1, 1, 2, 1, 2, 2, 1, 1, 5, 1, 1, 4, 1, 1, 2, 1, 1, 3, 2, 1, 4, 1, 1, 2, 1, 3, 3, 1, 1, 2, 1, 1, 4, 1, 1, 4, 1, 1, 2, 2, 1, 2, 1, 1, 3, 1, 2, 2, 1, 1, 2, 2, 1, 6
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
q[n_] := AllTrue[FactorInteger[n][[;; , 1]], # + 1 == 2^IntegerExponent[# + 1, 2] &]; f[p_, e_] := If[q[p], e + 1, 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
-
PARI
a(n) = {my(f=factor(n)); prod(i=1, #f~, if((f[i,1]+1) >> valuation(f[i,1]+1, 2) == 1 , f[i,2] + 1, 1))};
Comments