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.

A008510 Numbers k such that both k and the k-th triangular number are palindromes.

Original entry on oeis.org

1, 2, 3, 11, 77, 363, 1111, 2662, 111111, 246642, 11111111, 363474363, 2664444662, 26644444662, 246644446642, 266444444662, 2466444446642, 3654345456545434563
Offset: 1

Views

Author

Keywords

References

  • D. Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, 93.

Programs

  • Mathematica
    palQ[n_] := Reverse[x = IntegerDigits[n]] == x; t = {}; Do[If[palQ[n] && palQ[n*(n + 1)/2], AppendTo[t, n]], {n, 1.2*10^7}]; t (* Jayanta Basu, May 15 2013 *)