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.

A356739 a(n) is the smallest k such that k! has at least n consecutive zeros immediately after the leading digit in base 10.

Original entry on oeis.org

7, 153, 197, 7399, 24434, 24434, 9242360, 238861211, 238861211
Offset: 1

Views

Author

Christian Perfect, Aug 25 2022

Keywords

Examples

			a(1) = 7, because 7! = 5040 has one zero immediately after the leading digit, and there is no k<7 with that property.
		

Crossrefs

Programs

  • Python
    from itertools import count
    t = 1
    n = 1
    for k in count(1):
        t *= k
        while str(t)[1:1+n] == '0'*n:
            print(n,k)
            n += 1

Extensions

a(5)-a(6) from Amiram Eldar, Aug 25 2022
a(7)-a(9) from Jinyuan Wang, Aug 25 2022