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.

A029989 Squares which are palindromes in base 5.

Original entry on oeis.org

0, 1, 4, 36, 676, 961, 4356, 15876, 24336, 391876, 423801, 571536, 646416, 9771876, 10732176, 14107536, 81974916, 244171876, 248094001, 264908176, 339812356, 351787536, 1061326084, 1167042244, 2181263616, 6103671876
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    pal5Q[n_]:=Module[{idn5=IntegerDigits[n,5]},idn5==Reverse[idn5]]; Select[ Range[0,80000]^2,pal5Q] (* Harvey P. Dale, May 05 2012 *)