OFFSET
0,2
COMMENTS
a(14) is defined as "2^14 written in base 15". However, the base-15 digits of 2^14 are [4,12,12,4]. The standard convention of using letters A, B, ... to represent digits > 9, cannot be used in the Data sections of OEIS entries. One possibility to encode such terms within the given constraints and without affecting the earlier terms would be to use 00, 10, 20, ..., 50 to represent unambiguously the digits 0, 10, 11, ..., 14. - M. F. Hasler, Jun 22 2018.
This sequence makes a nice puzzle. It would be possible to allow non-decimal characters by using pairs of decimal digits instead of single digits, but this would spoil the beauty of the puzzle. - N. J. A. Sloane, Jun 25 2018
PROG
(PARI) apply( a(n, b=15, m=2)=fromdigits(digits(m^n, b)), [0..13]) \\ This sums the base-15 digits multiplied by powers of 10. Digits > 9 occurring for n >= 14 will carry over to the left (4CC4 -> 5324). - M. F. Hasler, Jun 22 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved