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.

A115744 Triangular numbers that are the product of 2 palindromes greater than 1.

Original entry on oeis.org

6, 10, 15, 21, 28, 36, 45, 55, 66, 231, 528, 666, 1128, 2016, 2211, 2628, 2775, 3003, 3570, 3916, 4095, 5995, 6105, 6216, 6903, 8646, 21736, 31878, 34980, 37950, 43956, 45753, 52003, 58653, 65703, 66066, 73153, 83028, 89676, 93528, 116886
Offset: 1

Views

Author

Giovanni Resta, Jan 31 2006

Keywords

Examples

			6903=T(117) and 6903=9*767.
		

Crossrefs

Programs

  • Mathematica
    Module[{upto=120000,pals},pals=Select[Range[2,upto/2],PalindromeQ];Select[ Times@@@Tuples[pals,2],OddQ[Sqrt[8#+1]]&&#<=upto&]]//Union (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, May 13 2018 *)