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.

A030703 Decimal expansion of 7^n contains no zeros (probably finite).

Original entry on oeis.org

0, 1, 2, 3, 6, 7, 10, 11, 19, 35
Offset: 1

Views

Author

Keywords

Comments

No additional terms up to 20000. - Harvey P. Dale, Oct 02 2013

Crossrefs

Programs

  • Magma
    [n: n in [0..500] | not 0 in Intseq(7^n)]; // Vincenzo Librandi, Mar 08 2014
  • Mathematica
    Select[Range[0,100],DigitCount[7^#,10,0]==0&] (* Harvey P. Dale, Oct 02 2013 *)
  • PARI
    for( n=0, 9999, is_A052382(7^n) && print1(n, ", "))  \\ M. F. Hasler, Sep 25 2011
    

Formula

A030703 = A000420^(-1)(A052382) as a set, where f^(-1)(Y) = { x : f(x) in Y}.
A030703 = A000420^(-1) o A195908 as a function. - M. F. Hasler, Sep 25 2011

Extensions

Initial term 0 inserted by M. F. Hasler, Sep 25 2011