|
| |
|
|
A095810
|
|
Numbers of the form 2^j (mod 10^k), where j and k are any positive integers, with leading zeros suppressed.
|
|
3
| |
|
|
1, 2, 4, 6, 8, 12, 16, 24, 28, 32, 36, 44, 48, 52, 56, 64, 68, 72, 76, 84, 88, 92, 96, 104, 112, 128, 136, 144, 152, 168, 176, 184, 192, 208, 216, 224, 232, 248, 256, 264, 272, 288, 296, 304, 312, 328, 336, 344, 352, 368, 376, 384, 392, 408, 416, 424, 432, 448
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Given only the last 5 (say) digits of a large integer N, how can you determine if N is not some power of 2? That is, which 5-digit numbers are of the form 2^j (mod 10^6) where j is any positive integer? So if the last 5 digits of N were not in this sequence, then N would not be a power of 2.
If we have only the last k digits of a large integer N, you find that N is not a power of 2 if and only if the number given by those digits is divisible by 5 OR not a multiple of 2^k OR a value > 2^k*(5^k-1). - Francisco Salinas (franciscodesalinas(at)hotmail.com), Aug 27 2004.
|
|
|
MATHEMATICA
| Take[ Union[ Flatten[ Table[ PowerMod[2, j, 10^k], {j, 0, 100}, {k, 3}]]], 58] (from Robert G. Wilson v (rgwv(at)rgwv.com) Sep 11 2004)
|
|
|
CROSSREFS
| Cf. A097574, A113022, A113023.
Sequence in context: A065386 A048951 A058629 * A025487 A070175 A096850
Adjacent sequences: A095807 A095808 A095809 * A095811 A095812 A095813
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Paul D. Hanna (pauldhanna(AT)juno.com), Aug 30 2004
|
|
|
EXTENSIONS
| Additional comments from Robert G. Wilson v, Oct 11 2005
|
| |
|
|