login
A244954
Smallest positive multiple of n whose base-3 representation contains only 0's and 1's.
7
1, 4, 3, 4, 10, 12, 28, 40, 9, 10, 121, 12, 13, 28, 30, 112, 85, 36, 247, 40, 84, 352, 253, 120, 325, 364, 27, 28, 841, 30, 31, 256, 363, 850, 280, 36, 37, 760, 39, 40, 82, 84, 3010, 352, 90, 1012, 94, 336, 2548, 850, 255, 364, 742, 108, 2200, 112, 741
OFFSET
1,2
LINKS
Ed Pegg Jr., 'Binary' Puzzle
Eric M. Schmidt, Sage code to compute this sequence (use b=3)
Chai Wah Wu, Pigeonholes and repunits, Amer. Math. Monthly, 121 (2014), 529-533.
MATHEMATICA
Module[{nn=10, b3}, b3=Rest[FromDigits[#, 3]&/@Tuples[{0, 1}, nn]]; Table[SelectFirst[b3, Mod[ #, n]==0&], {n, 60}]] (* Harvey P. Dale, Feb 01 2024 *)
PROG
(PARI) a(n, b=3) = if (n, k=1; while(vecmax(digits(k*n, b))>1, k++); k*n); \\ Michel Marcus, Jul 10 2014
CROSSREFS
Cf. A004283 (written in base 3), A004290, A244955-A244960.
Sequence in context: A073254 A094177 A249453 * A353830 A060374 A074296
KEYWORD
nonn,base
AUTHOR
Eric M. Schmidt, Jul 09 2014
EXTENSIONS
Data changed, offset changed, Mathematica program replaced, and b-file replaced by Harvey P. Dale, Feb 01 2024
STATUS
approved