This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A350992 #12 Jan 05 2025 19:51:42 %S A350992 0,1,3,6,78,171,300,2850,8256,9453,14706,120786,208335,399171,405450, %T A350992 416328,448878,720600,5877306,6046503,6835753,9350650,10122750, %U A350992 18431556,19130205,22596003,35309406,499169406,934394835,969430528,999335571,1059265378,1730160900 %N A350992 Triangular numbers that are palindromes in base 7. %C A350992 This sequence is infinite since A000217((7^k-1)/2) is a term for all k >= 0 (Trigg, 1974). %H A350992 Amiram Eldar, <a href="/A350992/b350992.txt">Table of n, a(n) for n = 1..103</a> %H A350992 Charles W. Trigg, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Scanned/12-2/trigg.pdf">Infinite sequences of palindromic triangular numbers</a>, The Fibonacci Quarterly, Vol. 12, No. 2 (1974), pp. 209-212. %e A350992 78 is a term since 78 = A000217(12) is a triangular number and also a palindromic number in base 7: 78 = 141_7. %e A350992 171 is a term since 171 = A000217(18) is a triangular number and also a palindromic number in base 7: 171 = 333_7. %t A350992 t[n_] := n*(n + 1)/2; Select[t /@ Range[0, 3*10^5], PalindromeQ[IntegerDigits[#, 7]] &] %Y A350992 Intersection of A000217 and A029954. %Y A350992 The septenary version of A003098. %Y A350992 Cf. A120741, A350987, A350990, A350991, A350993. %K A350992 nonn,base %O A350992 1,3 %A A350992 _Amiram Eldar_, Jan 28 2022