OFFSET
0,2
COMMENTS
n is the a(n)-th nonnegative integer having its multiplicative persistence.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..20000
Eric Weisstein's World of Mathematics, Multiplicative Persistence
MAPLE
m:= n-> mul(i, i=convert(n, base, 10)):
p:= n-> `if`(n<10, 0, 1+p(m(n))):
b:= proc() 0 end:
a:= proc(n) option remember; local t;
t:= p(n); b(t):= b(t)+1
end:
seq(a(n), n=0..100);
CROSSREFS
KEYWORD
AUTHOR
Alois P. Heinz, Oct 10 2015
STATUS
approved
