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.

A204094 Numbers whose set of base 10 digits is {0,7}.

Original entry on oeis.org

0, 7, 70, 77, 700, 707, 770, 777, 7000, 7007, 7070, 7077, 7700, 7707, 7770, 7777, 70000, 70007, 70070, 70077, 70700, 70707, 70770, 70777, 77000, 77007, 77070, 77077, 77700, 77707, 77770, 77777, 700000, 700007, 700070, 700077, 700700, 700707, 700770, 700777
Offset: 0

Views

Author

Reinhard Zumkeller, Jan 10 2012

Keywords

Crossrefs

Programs

  • Haskell
    a204094 n = a204094_list !! n
    a204094_list = map (* 7) a007088_list
  • Mathematica
    FromDigits/@Tuples[{0,7},6] (* Harvey P. Dale, Mar 03 2021 *)

Formula

a(n) = 7 * A007088(n).