A167307 Totally multiplicative sequence with a(p) = 6*(p+2) for prime p.
1, 24, 30, 576, 42, 720, 54, 13824, 900, 1008, 78, 17280, 90, 1296, 1260, 331776, 114, 21600, 126, 24192, 1620, 1872, 150, 414720, 1764, 2160, 27000, 31104, 186, 30240, 198, 7962624, 2340, 2736, 2268, 518400, 234, 3024, 2700, 580608, 258, 38880, 270
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]*6^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 07 2016 *) f[p_, e_] := (6*(p+2))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 19 2023 *)