cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A173228 The number of trailing zeros in (10^n)!

Original entry on oeis.org

2, 24, 249, 2499, 24999, 249998, 2499999, 24999999, 249999998, 2499999997, 24999999997, 249999999997, 2499999999997, 24999999999998, 249999999999997, 2499999999999996, 24999999999999995, 249999999999999995, 2499999999999999995, 24999999999999999996
Offset: 1

Views

Author

Keywords

Comments

For n > 1, the number a(n) of trailing end 0's in (10^n)! is short of (10^n)/4 by A055223(n). - Lekraj Beedassy, Oct 27 2010

Programs

  • Mathematica
    a[n_] := Sum[Floor[10^n/5^i], {i, Floor[Log[5, 10^n]]}]; Array[f, 18] (* edited by Robert G. Wilson v, Jul 22 2012 *)
  • Python
    from math import log, ceil
    def a(n):
      return sum(10**n // 5**k for k in range(1, ceil(log(10, 5) * n)))
    # Stephen G Cappella, Dec 13 2017

Formula

a(n) = Sum_{k>=1} floor(10^n/5^k). - Stephen G Cappella, Dec 13 2017