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

A036510
Smallest square containing exactly n 3's.
5
36, 3136, 343396, 1336336, 133333209, 3333330225, 313341333361, 1433333333961, 43333334833636, 1333333832344336, 123133353336333376, 3233633330337433321, 3333433332336331536, 2333303333385023333376, 133333533332333233936
OFFSET
1,1
COMMENTS
a(20) > 10^28. - Giovanni Resta, Jul 27 2018
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..19 (first 17 terms from Jon E. Schoenfield)
MATHEMATICA
a[n_] := Block[{k=1}, While[DigitCount[k^2, 10, 3] != n, k++]; k^2]; Array[a, 6] (* Giovanni Resta, Jul 27 2018 *)
CROSSREFS
Cf. A048348. - Jon E. Schoenfield, Jan 24 2009
Sequence in context: A268365 A004706 A061844 * A232669 A338076 A303339
KEYWORD
nonn,base
EXTENSIONS
More terms from Jon E. Schoenfield, Jan 14 2009
STATUS
approved