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.

A002232 8th powers written backwards.

Original entry on oeis.org

0, 1, 652, 1656, 63556, 526093, 6169761, 1084675, 61277761, 12764034, 1, 188853412, 696189924, 127037518, 6509875741, 5260982652, 6927694924, 1447575796, 67506991011, 14036538961, 652, 16395822873, 63537857845, 18258901387, 671413570011, 526098785251
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    a:= n-> (s-> parse(cat(s[-i]$i=1..length(s))))(""||(n^8)):
    seq(a(n), n=0..50);  # Alois P. Heinz, Apr 09 2015
  • Mathematica
    IntegerReverse[Range[0,40]^8] (* Harvey P. Dale, Jul 20 2021 *)