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.

A068183 Largest number without decimal digits equal to 1 whose product of digits gives n!.

Original entry on oeis.org

2, 32, 3222, 53222, 5332222, 75332222, 75332222222, 7533332222222, 755333322222222
Offset: 2

Views

Author

Labos Elemer, Feb 18 2002

Keywords

Comments

Maximal solutions are obtained from the concatenation of distinct prime factors that have one decimal digit. The sequence is finite because, for n>10, n! has 2-digit prime factors.

Crossrefs

Formula

a(n)=Max{x; f[x]=n!}, where x has no digit=1 and f[x_] := Apply[Times, IntegerDigits[x]].