OFFSET
1,2
COMMENTS
Previous name was: Values of k which are incrementally the largest values of the function: Smallest number m such that k divides (10's complement factorial of m).
MAPLE
A089186 := proc(n) 10^max(1, ilog10(n)+1)-n ; end: A110396 := proc(n) mul( A089186(i), i=1..n) ; end: A109631 := proc(n) local a; for a from 1 do if A110396(a) mod n = 0 then RETURN(a) ; fi ; od: end: A109640 := proc(n) option remember ; local nprev, aprev, a ; if n = 1 then RETURN(1); else nprev := A109640(n-1) ; aprev := A109631(nprev) ; for a from nprev+1 do if A109631(a) > aprev then RETURN(a) ; fi ; od; fi ; end: for n from 1 do printf("%d, ", A109640(n)) ; od: # R. J. Mathar, Feb 12 2008
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jason Earls, Aug 04 2005
EXTENSIONS
More terms from R. J. Mathar, Feb 12 2008
a(23)-a(45) from Jinyuan Wang, Aug 09 2025
New name (using comment from R. J. Mathar) from Joerg Arndt, Aug 09 2025
STATUS
approved
