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.

A306113 Largest k such that 3^k has exactly n digits 0 (in base 10), conjectured.

Original entry on oeis.org

68, 73, 136, 129, 205, 237, 317, 268, 251, 276, 343, 372, 389, 419, 565, 416, 494, 571, 637, 628, 713, 629, 638, 655, 735, 690, 862, 802, 750, 863, 826, 996, 976, 1008, 1085, 1026, 1130, 995, 962, 1082, 1136, 1064, 1176, 1084, 1215, 1354, 1298, 1275, 1226, 1468, 1353
Offset: 0

Views

Author

M. F. Hasler, Jun 22 2018

Keywords

Comments

a(0) is the largest term in A030700: exponents of powers of 3 without digit 0.
There is no proof for any of the terms, just as for any term of A020665 and many similar / related sequences. However, the search has been pushed to many magnitudes beyond the largest known term, and the probability of any of the terms being wrong is extremely small, cf., e.g., the Khovanova link.

Crossrefs

Cf. A063555: least k such that 3^k has n digits 0 in base 10.
Cf. A305943: number of k's such that 3^k has n digits 0.
Cf. A305933: row n lists exponents of 3^k with n digits 0.
Cf. A030700: { k | 3^k has no digit 0 } : row 0 of the above.
Cf. A238939: { 3^k having no digit 0 }.
Cf. A305930: number of 0's in 3^n.
Cf. A306112, ..., A306119: analog for 2^k, ..., 9^k.

Programs

  • PARI
    A306113_vec(nMax,M=99*nMax+199,x=3,a=vector(nMax+=2))={for(k=0,M,a[min(1+#select(d->!d,digits(x^k)),nMax)]=k);a[^-1]}