OFFSET
1,2
COMMENTS
a(n) >= n.
It appears that the density of n such that a(n) = n is 4/5.
LINKS
PROG
(GAP) A214880 := function(max) local result, i; result := [5]; for i in [2..max] do Add(result, result[i-1]^2 mod 10^i); od; result := List(result, x->Valuation(x, 5)); return result; end;
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric M. Schmidt, Jul 29 2012
STATUS
approved