A167306 Totally multiplicative sequence with a(p) = 5*(p+2) for prime p.
1, 20, 25, 400, 35, 500, 45, 8000, 625, 700, 65, 10000, 75, 900, 875, 160000, 95, 12500, 105, 14000, 1125, 1300, 125, 200000, 1225, 1500, 15625, 18000, 155, 17500, 165, 3200000, 1625, 1900, 1575, 250000, 195, 2100, 1875, 280000, 215, 22500, 225, 26000
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]*5^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 07 2016 *) f[p_, e_] := (5*(p+2))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 19 2023 *)