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.

Showing 1-1 of 1 results.

A277532 Position of first occurrence of at least n consecutive equal digits in the decimal expansion of the Euler-Mascheroni constant, starting after the decimal point.

Original entry on oeis.org

0, 1, 72, 2346, 3422, 3892
Offset: 1

Views

Author

Felix Fröhlich, Oct 19 2016

Keywords

Comments

Smallest k such that A001620(k) = A001620(k+m) for all m with 0 <= m < n.

Crossrefs

Programs

  • PARI
    emstring(n) = default(realprecision, n+10); my(x=Euler); floor(x*10^n)
    emdigit(n) = emstring(n)-10*emstring(n-1)
    searchstrpos(n) = my(x=1, i=1); while(1, my(y=x+1); while(emdigit(y)==emdigit(x), y++; i++); if(i >= n, return(x-1)); i=1; x++)
    a(n) = searchstrpos(n)
Showing 1-1 of 1 results.