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.

A002140 7th powers written backwards.

Original entry on oeis.org

0, 1, 821, 7812, 48361, 52187, 639972, 345328, 2517902, 9692874, 1, 17178491, 80813853, 71584726, 405314501, 573958071, 654534862, 376833014, 230022216, 937178398, 821, 1458801081, 8887534942, 7445284043, 4241746854, 5265153016, 6710181308, 30235306401
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    a:= n-> (s-> parse(cat(s[-i]$i=1..length(s))))(""||(n^7)):
    seq(a(n), n=0..50);  # Alois P. Heinz, Apr 09 2015
  • Mathematica
    FromDigits[Reverse[IntegerDigits[#]]]&/@(Range[0,25]^7) (* Harvey P. Dale, Dec 29 2010 *)