OFFSET
1,1
COMMENTS
If m is a member of the sequence represented by k digits in base 10, all members greater than m are congruent to m mod 10^k.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..16
EXAMPLE
The squares of the digits in the third term, 425, are 16, 4 and 25; hence a(4)=16425.
MATHEMATICA
NestList[FromDigits[Flatten[IntegerDigits[IntegerDigits[#]^2]]] &, 5, 10] (* Paolo Xausa, Jan 10 2025 *)
CROSSREFS
KEYWORD
base,easy,nonn,changed
AUTHOR
Matthew Vandermast, Apr 01 2003
STATUS
approved