OFFSET
0,1
COMMENTS
Interesting because the beginning is so close to a sequence of perfect squares to base ten. Only 195 is different; it would be 196 in a sequence of perfect squares.
EXAMPLE
a(0) = 100 because we can write 225 = 100 (base 15).
MAPLE
seq((l-> parse(cat(seq(l[-i], i=1..nops(l)))))(convert(
225, base, 15-n)), n=0..13); # Alois P. Heinz, Mar 10 2020
MATHEMATICA
Array[FromDigits@ IntegerDigits[225, 15 - #] &, 14, 0] (* Michael De Vlieger, Mar 10 2020 *)
PROG
(PARI) a(n) = fromdigits(digits(225, 15-n));
vector(14, n, a(n-1)) \\ Michel Marcus, Mar 11 2020
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Philip R. Turner (Phil.Turner(AT)cern.ch), Jun 17 2002
EXTENSIONS
a(13) corrected by Alois P. Heinz, Mar 10 2020
STATUS
approved