Numbers n such that the n-th triangular number n*(n+1)/2 is a palindrome in base 7.
1, 2, 3, 12, 18, 24, 75, 128, 137, 171, 491, 645, 893, 900, 912, 947, 1200, 3428, 3477, 3697, 4324, 4499, 6071, 6185, 6722, 8403, 31596, 43229, 44032, 44706, 46027, 58824, 171743, 191595, 210614, 210957, 221275, 302537, 320044, 329417, 411771, 554128, 829551
1
Ulas proves that this sequence is infinite. See the base 7 numbers in S000357.
T. D. Noe, Plot of 73 terms
T. D. Noe, Table of 73 terms
Maciej Ulas, On certain diophantine equations related to triangular and tetrahedral numbers, arXiv 0811.2477 (Nov 15 2008)
Eric W. Weisstein, MathWorld: Triangular Number
(Mma) ff[base_, len_] := Module[{n = 0, t = {}, tri, d}, While[Length[t] < len, n++; tri = n*(n + 1)/2; d = IntegerDigits[tri, base]; If[d == Reverse[d], AppendTo[t, n]]]; t]; ff[7, 30]
Cf. A003098, A008509 (base 10), S000344-S000351 (bases 2-9), S000357.
nonn,base,hard
T. D. Noe, Nov 18 2014