A167327 Totally multiplicative sequence with a(p) = 8*(p+3) for prime p.
1, 40, 48, 1600, 64, 1920, 80, 64000, 2304, 2560, 112, 76800, 128, 3200, 3072, 2560000, 160, 92160, 176, 102400, 3840, 4480, 208, 3072000, 4096, 5120, 110592, 128000, 256, 122880, 272, 102400000, 5376, 6400, 5120, 3686400, 320, 7040, 6144, 4096000, 352, 153600
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]] + 3)^fi[[All, 2]])); Table[a[n]*8^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 09 2016 *) f[p_, e_] := (8*(p+3))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 21 2023 *)