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.

A246817 Possible number of trailing zeros in hyperfactorials (A002109).

Original entry on oeis.org

0, 5, 15, 30, 50, 100, 130, 165, 205, 250, 350, 405, 465, 530, 600, 750, 830, 915, 1005, 1100, 1300, 1405, 1515, 1630, 1750, 2125, 2255, 2390, 2530, 2675, 2975, 3130, 3290, 3455, 3625, 3975, 4155, 4340, 4530, 4725, 5125, 5330, 5540, 5755, 5975, 6425, 6655
Offset: 1

Views

Author

Chai Wah Wu, Sep 03 2014

Keywords

Comments

The number of trailing zeros in A002109 increases every 5 terms since the exponent of the factor 5 increases every 5 terms and the exponent of the factor 2 increases every 2 terms.

Crossrefs

Programs

  • Python
    from sympy import multiplicity
    A246817, p5 = [0], 0
    for n in range(5,5*10**3,5):
        p5 += multiplicity(5,n)*n
        A246817.append(p5) # Chai Wah Wu, Sep 05 2014