OFFSET
1,1
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000 (first 4114 terms from Daniel Starodubtsev)
FORMULA
a(n) seems to be asymptotic to c*n with c=2.3.....
MATHEMATICA
tot[n_] := tot[n] = If[n < 2, 0, tot[n - 1] + Plus @@ FactorInteger[n][[;; , 1]]]; ef[n_, p_] := Block[{c=0, m=n}, While[m > 0, m = Floor[m/p]; c += m]; c]; ok[n_] := n > 1 && AllTrue[ FactorInteger@ tot@n, #[[1]] <= n && ef[n, #[[1]]] >= #[[2]] &]; Select[ Range@ 1000, ok] (* Giovanni Resta, Dec 13 2019 *)
PROG
(PARI) for (j=2, 143, if(!(j!%sum(k=1, j, vecsum(factor(k)[, 1]))), print1(j, ", "))) \\ Hugo Pfoertner, Dec 13 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Oct 03 2002
STATUS
approved