A167323 Totally multiplicative sequence with a(p) = 4*(p+3) for prime p.
1, 20, 24, 400, 32, 480, 40, 8000, 576, 640, 56, 9600, 64, 800, 768, 160000, 80, 11520, 88, 12800, 960, 1120, 104, 192000, 1024, 1280, 13824, 16000, 128, 15360, 136, 3200000, 1344, 1600, 1280, 230400, 160, 1760, 1536, 256000, 176, 19200, 184, 22400
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]*4^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 09 2016 *) f[p_, e_] := (4*(p+3))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 22 2023 *)