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.

A346120 a(n) is the smallest nonnegative number k such that the decimal expansion of k! contains the string n.

Original entry on oeis.org

5, 0, 2, 8, 4, 7, 3, 6, 9, 11, 19, 22, 5, 15, 26, 25, 11, 14, 27, 29, 5, 19, 13, 18, 4, 23, 26, 13, 9, 14, 15, 32, 8, 24, 28, 17, 9, 18, 23, 11, 7, 27, 17, 15, 21, 19, 26, 12, 24, 23, 7, 19, 23, 32, 29, 17, 17, 18, 23, 25, 12, 26, 9, 26, 18, 30, 20, 15, 11, 27, 13
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 05 2021

Keywords

Examples

			a(3) = 8 since 3 occurs in 8! = 40320, but not in 0!, 1!, 2!, ..., 7!.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := (k = 0; While[! MatchQ[IntegerDigits[k!], {_, Sequence @@ IntegerDigits[n], _}], k++]; k); Table[a[n], {n, 0, 70}]
  • PARI
    a(n) = my(k=0, s=Str(n)); while (#strsplit(Str(k!), s) < 2, k++); k; \\ Michel Marcus, Jul 05 2021
    
  • Python
    def A346120(n):
        s, k, f = str(n), 0, 1
        while s not in str(f):
            k += 1
            f *= k
        return k # Chai Wah Wu, Jul 05 2021