OFFSET
0,13
COMMENTS
It appears that as n gets large, a(n) can become arbitrarily large.
It appears that values of n such that a(n) = 0 exist for arbitrarily large n.
LINKS
Carson R. Smith, Table of n, a(n) for n = 0..2000
EXAMPLE
For n = 3, 3! = 6, 6 is not prime, a(3) = 0.
For n = 19, 19! = 121645100408832000, 1216451 is the smallest prime, a(19) = 7.
MATHEMATICA
A379944[n_] := Catch[Do[If[PrimeQ[FromDigits[#[[;; k]]]], Throw[k]], {k, Length[#]}] & [IntegerDigits[n!]]; 0];
Array[A379944, 100, 0] (* Paolo Xausa, Jan 16 2025 *)
PROG
(Python)
import math
from sympy import isprime
def a(n):
factorial = str(math.factorial(n))
for d in range(1, len(factorial)+1):
if isprime(int(factorial[:d])):
return d
return 0
(PARI) a(n) = my(d=digits(n!)); for (k=1, #d, if (isprime(fromdigits(Vec(d, k))), return(k))); \\ Michel Marcus, Jan 08 2025
CROSSREFS
KEYWORD
nonn,base,new
AUTHOR
Carson R. Smith, Jan 07 2025
EXTENSIONS
More terms from Jinyuan Wang, Jan 07 2025
STATUS
approved