A112762 Exponent of 5 (value of k) in n-th number of the form 2^i*3^j*5^k.
0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 2, 0, 1, 0, 0, 1, 1, 0, 2, 0, 1, 0, 0, 2, 1, 0, 1, 0, 2, 0, 1, 3, 0, 1, 0, 2, 1, 0, 1, 0, 2, 0, 2, 1, 0, 3, 0, 1, 0, 2, 1, 0, 1, 3, 0, 2, 1, 0, 2, 1, 0, 3, 0, 1, 0, 2, 4, 1, 0, 2, 1, 0, 3, 0, 2, 1, 0, 2, 1, 0, 3, 0, 1, 3, 0, 2, 1, 4, 1, 0, 2, 1, 0, 3, 0, 2, 1, 0, 2, 4
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
IntegerExponent[#, 5] & /@ Select[Range[3000], Last @ Map[First, FactorInteger[#]] <= 5 &] (* Amiram Eldar, Feb 07 2020 *)