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.

A014188 Fourth powers of palindromes.

Original entry on oeis.org

0, 1, 16, 81, 256, 625, 1296, 2401, 4096, 6561, 14641, 234256, 1185921, 3748096, 9150625, 18974736, 35153041, 59969536, 96059601, 104060401, 151807041, 214358881, 294499921, 395254161, 519885601, 671898241
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    palQ[n_]:=Module[{idn=IntegerDigits[n]},idn==Reverse[idn]]; Select[ Range[ 0,200],palQ]^4 (* Harvey P. Dale, Feb 09 2015 *)