OFFSET
0,3
COMMENTS
LINKS
Robert Israel, Table of n, a(n) for n = 0..6000
EXAMPLE
a(0) = a(1) = 1 because 0! = 1! = 1 and 1 is the only digit present;
a(4) = -1 since 4! = 24 and there are only two digits appearing with the same frequency, 2 and 4.
a(14) = -1 because 14! = 87178291200 and, not counting the two trailing 0's, there are two 1's, two 2's, two 7's, and two 8's.
MAPLE
f:= proc(n) local L, j;
L:= convert(n!, base, 10);
for j from 1 while L[j] = 0 do od:
L:= Statistics:-Tally(L[j...-1]);
L:= sort(L, (a, b) -> rhs(a) > rhs(b));
if nops(L) >= 2 and rhs(L[2]) = rhs(L[1]) then -1 else lhs(L[1]) fi
end proc:
map(f, [$0..100]); # Robert Israel, Sep 15 2025
MATHEMATICA
a[n_] := If[Length[c=Commonest[IntegerDigits[n! / 10^IntegerExponent[n!]]]] > 1, -1, c[[1]]]; Array[a, 86, 0]
PROG
(Python)
from collections import Counter
from sympy import factorial
def A375348(n): return -1 if len(k:=Counter(str(factorial(n)).rstrip('0')).most_common(2)) > 1 and k[0][1]==k[1][1] else int(k[0][0]) # Chai Wah Wu, Sep 15 2024
CROSSREFS
KEYWORD
base,sign
AUTHOR
Stefano Spezia and Robert G. Wilson v, Aug 12 2024
STATUS
approved
