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.

A195944 Numbers k such that 13^k has no zero in its decimal expansion.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 7, 10, 14
Offset: 1

Views

Author

M. F. Hasler, Sep 25 2011

Keywords

Comments

Probably finite. Is 14 the largest term?

Crossrefs

Programs

  • Magma
    [n: n in [0..1000] | not 0 in Intseq(13^n) ]; // Vincenzo Librandi, May 06 2015
  • Mathematica
    Select[Range[0,20],DigitCount[13^#,10,0]==0&] (* Harvey P. Dale, May 24 2023 *)
  • PARI
    for( n=0,9999, is_A052382(13^n) && print1(n","))
    

Formula

Equals { n | A001022(n) is in A052382 }.

Extensions

Keyword:fini removed by Jianing Song, Jan 28 2023 as finiteness is only conjectured.