OFFSET
1,2
COMMENTS
From Michael De Vlieger, Nov 13 2014: (Start)
The next term contains a nondecimal digit: see the link below for an expanded table of squares with the nondecimal digits.
As n increases, a(n) cycles through the end digits in the order 0, 1, 4, 9, 5, 3, 3, 5, 9, 4, 1.
(End)
LINKS
Michael De Vlieger, Table of squares written in base 11, a(n) for n = 1..1331 (11^3 or "1000" in base 11)
EXAMPLE
a(8) = 8 * 8 = decimal 64 = 5 * 11 + 9 = "59".
a(15) = 15 * 15 = decimal 225 = 1 * (11^2) + 9 * (11^1) + 5 = "195".
MATHEMATICA
a004629[n_Integer] := BaseForm[n^2, 11]; a004629 /@ Range[11^3] (* Michael De Vlieger, Nov 13 2014 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
STATUS
approved
