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.

A006029 Numbers k such that the k-th tetrahedral number k*(k+1)*(k+2)/6 is palindromic.

Original entry on oeis.org

1, 2, 17, 21, 336
Offset: 1

Views

Author

Keywords

Comments

No more terms to 10^10. - Charles R Greathouse IV, Mar 23 2011

Crossrefs

Cf. A006030.

Programs

  • Mathematica
    Select[Range[350],PalindromeQ[(#(#+1)(#+2))/6]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Apr 02 2018 *)