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.

A367738 a(n) = k is the smallest exponent k such that at least 3 equal decimal digits "n,n,n" appear in the decimal representation of 3^k (n=0,1,...,9).

Original entry on oeis.org

148, 93, 148, 119, 55, 33, 34, 112, 32, 35
Offset: 0

Views

Author

Harvey P. Dale, Nov 28 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Module[{k=1},While[SequenceCount[IntegerDigits[3^k],{n,n,n}]<1,k++];k],{n,0,9}]