OFFSET
0,6
COMMENTS
Diamond and Reidpath prove that a(2n) = 1 for n > 0, a(n) = 2 if n is contains an even digit but no 0's in its factorial base representation. If a(n) > 2 then 3 | n.
Further modular properties can be easily proved. For example, a(n) > 2 implies that n is 33, 45, 81, or 93 mod 120.
LINKS
Antti Karttunen, Table of n, a(n) for n = 0..65537
M. R. Diamond and D. D. Reidpath, A counterexample to conjectures by Sloane and Erdos concerning the persistence of numbers, Journal of Recreational Mathematics 29:2 (1998), pp. 89-92.
FORMULA
a(0) = a(1) = 0; for n > 1, a(n) = 1 + a(A208575(n)). - Antti Karttunen, Nov 14 2018
PROG
(PARI) pr(n)=my(k=1, s=1); while(n, s*=n%k++; n\=k); s
a(n)=my(t); while(n>1, t++; n=pr(n)); t
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Charles R Greathouse IV, Feb 28 2012
STATUS
approved