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.

A046292 Numbers k such that 2^k contains 2^6=64 as its largest proper substring of the form 2^m.

Original entry on oeis.org

26, 31, 46, 59, 66, 67, 72, 77, 83, 86, 89, 92, 96, 101, 106, 111, 116, 119, 123, 124, 125, 126, 129, 131, 136, 138, 141, 142, 144, 148, 152, 153, 155, 157, 163, 165, 166, 171, 176, 177, 178, 181, 182, 183, 186, 193, 194, 197, 198, 199, 202, 204, 205, 206
Offset: 1

Views

Author

Patrick De Geest, Jun 15 1998

Keywords

Comments

If there is a term beyond a(747) = 7954, it is larger than 250000. - Giovanni Resta, Oct 14 2019

Examples

			2^26 = 671088{64};
2^31 = 2147483{64}8;
2^46 = 703687441776{64}.
		

Crossrefs

Cf. A033921.

Programs

  • Mathematica
    sub2[n_] := Block[{s = ToString[2^n], k = n - 1}, While[k >= 0 && ! StringContainsQ[s, ToString[2^k]], k--]; k]; Select[Range[300], sub2[#] == 6 &] (* Giovanni Resta, Oct 14 2019 *)