A167309 Totally multiplicative sequence with a(p) = 8*(p+2) for prime p.
1, 32, 40, 1024, 56, 1280, 72, 32768, 1600, 1792, 104, 40960, 120, 2304, 2240, 1048576, 152, 51200, 168, 57344, 2880, 3328, 200, 1310720, 3136, 3840, 64000, 73728, 248, 71680, 264, 33554432, 4160, 4864, 4032, 1638400, 312, 5376, 4800, 1835008, 344, 92160, 360
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
a[1] = 1; a[n_] := (fi = FactorInteger[n]; Times @@ ((fi[[All, 1]] + 2)^fi[[All, 2]])); Table[a[n]*8^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 07 2016 *) f[p_, e_] := (8*(p+2))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 19 2023 *)