login
A043273
Sum of the digits of the n-th base 14 palindrome.
0
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 8, 9, 10
OFFSET
1,3
MATHEMATICA
Table[With[{id14=IntegerDigits[n, 14]}, If[id14==Reverse[id14], Total[id14], Nothing]], {n, 0, 1000}] (* Harvey P. Dale, Oct 10 2024 *)
CROSSREFS
A029959 (base 14 palindromes)
Sequence in context: A070696 A053834 A297245 * A268982 A278065 A373233
KEYWORD
nonn,base
STATUS
approved