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-3 of 3 results.

A171252 Least power of 2 to have at least n consecutive digits 'n' in its decimal expansion.

Original entry on oeis.org

0, 0, 43, 83, 192, 973, 2269, 972, 25263, 42485
Offset: 0

Views

Author

M. F. Hasler, Dec 06 2009

Keywords

Comments

As it stands, the definition makes only sense for (decimal digits) n=0,...,9. Replacing "decimal" by, e.g., base-(prime(n)), the sequence could be defined for all n. (However, e.g., base-(n+1) would not work, since in base 4 no power of 2 has a digit "3".)

Crossrefs

Programs

  • PARI
    A171252(n)={my(p=10^n, t); n*=p\9; for(k=0,1e9, t=2^k; until( n>t\=10, t%p==n & return(k)))}
    for(d=0,9, print(d" "A171252(d)))

A131540 Exponent of least power of 2 having exactly n consecutive 6's in its decimal representation.

Original entry on oeis.org

0, 4, 46, 157, 222, 220, 2269, 11019, 18842, 192918, 192916, 271979, 1039316, 7193133, 14060686, 97428976
Offset: 0

Views

Author

Shyam Sunder Gupta, Aug 26 2007

Keywords

Examples

			a(3)=157 because 2^157(i.e. 182687704666362864775460604089535377456991567872) is the smallest power of 2 to contain a run of 3 consecutive sixes in its decimal form.
		

Crossrefs

Programs

  • Mathematica
    a = ""; Do[ a = StringJoin[a, "6"]; b = StringJoin[a, "6"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 10} ]

Extensions

Two more terms from Sean A. Irvine, May 31 2010
a(13)-a(14) from Lars Blomberg, Jan 24 2013
a(15) from Bert Dobbelaere, Mar 07 2019
a(0)=0 prepended by Paul Geneau de Lamarlière, Jul 20 2024

A131541 Exponent of least power of 2 having exactly n consecutive 7's in its decimal representation.

Original entry on oeis.org

0, 15, 27, 24, 181, 317, 2309, 972, 25264, 131979, 279275, 279269, 1727605, 6030752, 8760853, 77235364
Offset: 0

Views

Author

Shyam Sunder Gupta, Aug 26 2007

Keywords

Examples

			a(3)=24 because 2^24(i.e. 16777216) is the smallest power of 2 to contain a run of 3 consecutive sevens in its decimal form.
		

Crossrefs

Programs

  • Mathematica
    a = ""; Do[ a = StringJoin[a, "7"]; b = StringJoin[a, "7"]; k = 1; While[ StringPosition[ ToString[2^k], a] == {} || StringPosition[ ToString[2^k], b] != {}, k++ ]; Print[k], {n, 1, 10} ]

Extensions

a(11)-a(12) from Sean A. Irvine, May 31 2010
a(13)-a(14) from Lars Blomberg, Jan 24 2013
a(15) from Bert Dobbelaere, Mar 02 2019
a(0)=0 prepended by Paul Geneau de Lamarlière, Jul 20 2024
Showing 1-3 of 3 results.