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.

A034906 Powers of 2 written backwards and sorted.

Original entry on oeis.org

1, 2, 4, 8, 23, 46, 61, 215, 652, 821, 2918, 4201, 6904, 8402, 48361, 63556, 86723, 270131, 441262, 882425, 2517902, 4034914, 6758401, 8068838, 23445533, 46880176, 61277761, 219078635, 654534862
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Sort[FromDigits[Reverse[IntegerDigits[#]]]&/@(2^Range[0,30])] (* Harvey P. Dale, Mar 06 2012 *)
    IntegerReverse[#]&/@(2^Range[0,30])//Sort (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jul 03 2020 *)