S000703


Number of palindromic (in base 6) triples that sum to n.

1, 1, 2, 3, 4, 5, 6, 7, 7, 8, 7, 7, 6, 5, 5, 5, 4, 4, 4, 4, 3, 5, 4, 4, 4, 4, 4, 3, 6, 5, 5, 5, 5, 5, 3, 7, 5, 6, 6, 7, 7, 6, 11, 9, 8, 9, 7, 8, 4, 11, 6, 9, 7, 8, 7, 6, 11, 9, 9, 9, 8, 9, 6, 14, 8, 11, 8, 9, 8, 9, 13, 11, 11, 9, 10, 11, 10, 15, 11, 12, 9, 11

0

S000703

Three terms seem to be enough.

T. D. Noe, Plot of 10000 terms

T. D. Noe, Table of 10000 terms

Javier Cilleruelo and Florian Luca, Every positive integer is a sum of three palindromes, arXiv 1602.06208 (Feb 19 2016)

Yu Gao, Represent a natural number as the sum of palindromes in various bases, arXiv 1508.06185 (Aug 24 2015)

(Mma) base = 6; mx = 100; pal = Select[Range[0, mx], (d = IntegerDigits[#, base]; d == Reverse[d]) &]; Table[Length[IntegerPartitions[n, {3}, pal]], {n, 0, mx}]

Cf. S000698-S000708.

nonn,base

T. D. Noe, Sep 23 2015

© Tony D Noe 2014-2016