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.

A030074 Squares which are palindromes in base 14.

Original entry on oeis.org

0, 1, 4, 9, 225, 576, 900, 2209, 27225, 38809, 44521, 50625, 57121, 155236, 166464, 178084, 4796100, 5978025, 7535025, 8732025, 10017225, 30140100, 32490000, 73359225, 1475865889, 1490963769, 1506138481, 1521390025
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    pb14Q[n_]:=Module[{idn14=IntegerDigits[n, 14]}, idn14==Reverse[idn14]]; Select[Range[0, 20000]^2, pb14Q] (* Vincenzo Librandi, Jul 24 2014 *)