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.

A045050 Numbers whose base-4 representation contains exactly two 0's and three 2's.

Original entry on oeis.org

522, 546, 552, 642, 648, 672, 1066, 1162, 1186, 1192, 1546, 1570, 1576, 1666, 1672, 1696, 2074, 2086, 2089, 2091, 2094, 2106, 2122, 2146, 2152, 2182, 2185, 2187, 2190, 2194, 2200, 2209, 2211, 2212, 2220, 2226, 2232, 2250
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A007090.

Programs

  • Mathematica
    Select[Range[7000], DigitCount[#, 4, 0] == 2 && DigitCount[#, 4, 2] == 3 &] (* Vincenzo Librandi, Sep 21 2016 *)