A167310 Totally multiplicative sequence with a(p) = 9*(p+2) for prime p.
1, 36, 45, 1296, 63, 1620, 81, 46656, 2025, 2268, 117, 58320, 135, 2916, 2835, 1679616, 171, 72900, 189, 81648, 3645, 4212, 225, 2099520, 3969, 4860, 91125, 104976, 279, 102060, 297, 60466176, 5265, 6156, 5103, 2624400, 351, 6804, 6075, 2939328, 387, 131220, 405
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]*9^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 07 2016 *) f[p_, e_] := (9*(p+2))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 19 2023 *)