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.

A134114 Powers of 8 written backwards and sorted.

Original entry on oeis.org

1, 8, 46, 215, 6904, 86723, 441262, 2517902, 61277761, 827712431, 2954399858, 4281473701, 63767491786, 888318557945, 4011156408934, 23888027348153, 656017679474182, 8425863189971522, 48918490589341081, 278558570881511441
Offset: 1

Views

Author

Jonathan Vos Post, Oct 08 2007

Keywords

Crossrefs

Programs

  • Maple
    rev:= proc(n) local L,i; L:= convert(n,base,10); add(L[-i]*10^(i-1),i=1..nops(L)) end proc:
    sort(map(rev,[seq(8^i,i=0 .. floor(log[8](10^20)))])); # Robert Israel, Mar 05 2025
  • Mathematica
    IntegerReverse[8^Range[0,20]]//Sort (* Harvey P. Dale, Jul 19 2024 *)