login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A071987
225 written in base 15-n.
0
100, 121, 144, 169, 195, 225, 270, 341, 441, 1013, 1400, 3201, 22100, 11100001
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
Sequence in context: A352958 A328864 A143919 * A365820 A095633 A228103
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