cp's OEIS Frontend

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.

A350990 Triangular numbers that are palindromes in base 3.

Original entry on oeis.org

0, 1, 10, 28, 91, 820, 7381, 65341, 66430, 597871, 1633528, 5380840, 48339028, 48427561, 139386556, 435848050, 1178284240, 3529890253, 3922632451, 32614707700, 35296517971, 35303692060, 101891588176, 292358957446, 295883935480, 317733228541, 859413596320, 2649105942220
Offset: 1

Views

Author

Amiram Eldar, Jan 28 2022

Keywords

Comments

This sequence is infinite since A000217((3^k-1)/2) is a term for all k >= 0 (Trigg, 1971).

Examples

			10 is a term since 10 = A000217(4) is a triangular number and also a palindromic number in base 3: 10 = 101_3.
28 is a term since 28 = A000217(7) is a triangular number and also a palindromic number in base 3: 36 = 1001_3.
		

Crossrefs

Intersection of A000217 and A014190.
The ternary version of A003098.

Programs

  • Mathematica
    t[n_] := n*(n + 1)/2; Select[t /@ Range[0, 3*10^5], PalindromeQ[IntegerDigits[#, 3]] &]