A167324 Totally multiplicative sequence with a(p) = 5*(p+3) for prime p.
1, 25, 30, 625, 40, 750, 50, 15625, 900, 1000, 70, 18750, 80, 1250, 1200, 390625, 100, 22500, 110, 25000, 1500, 1750, 130, 468750, 1600, 2000, 27000, 31250, 160, 30000, 170, 9765625, 2100, 2500, 2000, 562500, 200, 2750, 2400, 625000, 220, 37500, 230
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]*5^PrimeOmega[n], {n, 1, 100}] (* G. C. Greubel, Jun 09 2016 *) f[p_, e_] := (5*(p+3))^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 22 2023 *)