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.

A029734 Palindromic squares in base 16.

Original entry on oeis.org

0, 1, 4, 9, 289, 1156, 66049, 74529, 83521, 93025, 101761, 264196, 280900, 298116, 597529, 1896129, 16785409, 19088161, 21538881, 67141636, 68128516, 71673156, 76282756, 81830116, 2665553641, 4295098369, 4328718849
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    pb16Q[n_]:=Module[{idn16=IntegerDigits[n,16]}, idn16==Reverse[idn16]]; Select[Range[0, 200000]^2, pb16Q] (* Vincenzo Librandi, Jul 24 2014 *)