A325410 Smallest k such that the adjusted frequency depth of k! is n > 2.
3, 4, 5, 7, 26, 65, 942, 24147
Offset: 3
Examples
Column n is the sequence of images under A181819 starting with a(n)!: 6 24 120 5040 403291461126605635584000000 4 10 20 84 11264760 3 4 6 12 240 3 4 6 28 3 4 6 3 4 3
Crossrefs
Programs
-
Mathematica
fdadj[n_Integer]:=If[n==1,0,Length[NestWhileList[Times@@Prime/@Last/@FactorInteger[#]&,n,!PrimeQ[#]&]]]; dat=Table[fdadj[n!],{n,1000}]; Table[Position[dat,k][[1,1]],{k,3,Max@@dat}]
Comments