login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A167306
Totally multiplicative sequence with a(p) = 5*(p+2) for prime p.
1
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,2
LINKS
FORMULA
Multiplicative with a(p^e) = (5*(p+2))^e. If n = Product p(k)^e(k) then a(n) = Product (5*(p(k)+2))^e(k).
a(n) = A165826(n) * A166590(n) = 5^bigomega(n) * A166590(n) = 5^A001222(n) * A166590(n).
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 *)
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Jaroslav Krizek, Nov 01 2009
STATUS
approved