login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A046299
Numbers k such that 2^k contains 2^13=8192 as its largest proper substring of the form 2^m.
1
105, 269, 406, 463, 505, 513, 518, 536, 559, 570, 659, 821, 924, 948, 981, 993, 995, 1013, 1081, 1133, 1136, 1165, 1199, 1246, 1279, 1281, 1312, 1330, 1331, 1344, 1354, 1362, 1363, 1408, 1434, 1436, 1447, 1454, 1480, 1488, 1491, 1499, 1501, 1503, 1513
OFFSET
1,1
EXAMPLE
2^105 = 40564{8192}07303340847894502572032.
MATHEMATICA
sub2[n_] := Block[{s = ToString[2^n], k = n - 1}, While[k >= 0 && ! StringContainsQ[ s, ToString[2^k]], k--]; k]; Select[Range[1513], sub2[#] == 13 &] (* Giovanni Resta, Oct 14 2019 *)
CROSSREFS
Cf. A033921.
Sequence in context: A350199 A146257 A075764 * A010090 A306122 A174830
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Jun 15 1998
EXTENSIONS
Definition and offset changed by M. F. Hasler, Oct 11 2019
STATUS
approved