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

A063600
Smallest k such that 6^k has exactly n 4's in its decimal representation.
0
1, 6, 14, 15, 47, 31, 28, 44, 70, 49, 74, 93, 124, 128, 126, 130, 116, 156, 125, 175, 228, 207, 214, 201, 174, 264, 230, 241, 238, 266, 211, 370, 368, 279, 288, 305, 358, 366, 401, 385, 416, 387, 461, 466, 475, 429, 456, 428, 471, 470, 494
OFFSET
0,2
MATHEMATICA
a = {}; Do[k = 1; While[ Count[ IntegerDigits[6^k], 4] != n, k++ ]; a = Append[a, k], {n, 0, 50} ]; a
Module[{nn=60, k6=6^Range[500]}, Table[Position[k6, _?(DigitCount[#, 10, 4]== n&), 1, 1], {n, 0, nn}]]//Flatten (* Harvey P. Dale, Jun 26 2022 *)
CROSSREFS
Sequence in context: A338907 A218005 A337384 * A116926 A140330 A242832
KEYWORD
base,nonn
AUTHOR
Robert G. Wilson v, Aug 10 2001
EXTENSIONS
Name corrected by Jon E. Schoenfield, Jun 26 2018
STATUS
approved