[go: up one dir, main page]

login
A082027
a(1)=6; a(n) is concatenation of the squares of each digit of a(n-1), in order (in base 10).
1
6, 36, 936, 81936, 64181936, 3616164181936, 93613613616164181936, 819361936193613613616164181936, 641819361819361819361936193613613616164181936
OFFSET
1,1
COMMENTS
If m is a member of the sequence consisting of k base-10 digits, every member of the sequence greater than m is congruent to m modulo 10^k.
EXAMPLE
a(4)=81936 because the squares of the digits of a(3)--namely, 9, 3 and 6--are 81, 9 and 36 respectively.
MATHEMATICA
NestList[FromDigits[Flatten[IntegerDigits/@(IntegerDigits[#]^2)]]&, 6, 10] (* Harvey P. Dale, Feb 28 2013 *)
CROSSREFS
Sequence in context: A206636 A244841 A268161 * A203106 A351796 A069031
KEYWORD
base,easy,nonn
AUTHOR
Matthew Vandermast, Apr 01 2003
STATUS
approved