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”).

A063604
Smallest k such that 6^k has exactly n 8's in its decimal representation.
0
1, 12, 15, 25, 24, 40, 29, 53, 51, 84, 89, 99, 126, 107, 117, 141, 153, 167, 187, 171, 149, 232, 212, 242, 238, 257, 254, 248, 267, 272, 303, 308, 378, 340, 309, 387, 352, 382, 396, 397, 392, 438, 454, 472, 439, 436, 484, 420, 492, 467, 544
OFFSET
0,2
MATHEMATICA
a = {}; Do[k = 1; While[ Count[ IntegerDigits[6^k], 8] != n, k++ ]; a = Append[a, k], {n, 0, 50} ]; a
CROSSREFS
Sequence in context: A253235 A050480 A290508 * A357867 A350807 A124521
KEYWORD
base,nonn
AUTHOR
Robert G. Wilson v, Aug 10 2001
EXTENSIONS
Name corrected by Jon E. Schoenfield, Jun 26 2018
STATUS
approved