A366539 The sum of unitary divisors of the exponentially 2^n-numbers (A138302).
1, 3, 4, 5, 6, 12, 8, 10, 18, 12, 20, 14, 24, 24, 17, 18, 30, 20, 30, 32, 36, 24, 26, 42, 40, 30, 72, 32, 48, 54, 48, 50, 38, 60, 56, 42, 96, 44, 60, 60, 72, 48, 68, 50, 78, 72, 70, 54, 72, 80, 90, 60, 120, 62, 96, 80, 84, 144, 68, 90, 96, 144, 72, 74, 114, 104
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
s[n_] := Module[{f = FactorInteger[n], e}, e = f[[;;, 2]]; If[AllTrue[e, # == 2^IntegerExponent[#, 2] &], Times @@ (1 + Power @@@ f), Nothing]]; s[1] = 1; Array[s, 100]
-
PARI
lista(max) = for(k = 1, max, my(f = factor(k), e = f[, 2], is = 1); for(i = 1, #e, if(e[i] >> valuation(e[i], 2) > 1, is = 0; break)); if(is, print1(prod(i = 1, #e, 1 + f[i, 1]^e[i]), ", ")));
Comments