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.

A217160 a(n) is the least value of k such that the decimal expansion of n^k contains five consecutive identical digits.

Original entry on oeis.org

220, 274, 110, 125, 226, 172, 105, 137, 5, 156, 40, 227, 196, 216, 55, 235, 78, 115, 5, 104, 133, 187, 126, 93, 115, 110, 21, 163, 5, 40, 44, 159, 104, 110, 113, 20, 200, 205, 5, 119, 142, 116, 90, 145, 156, 136, 37, 86, 5, 37, 62, 119, 85, 91, 107, 142, 40
Offset: 2

Views

Author

V. Raman, Sep 27 2012

Keywords

Crossrefs

Programs

  • Mathematica
    Table[k = 1; While[! MemberQ[Partition[Differences[IntegerDigits[n^k]], 4, 1], {0, 0, 0, 0}], k++]; k, {n, 2, 100}] (* T. D. Noe, Oct 01 2012 *)