login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A048348
a(n)^2 is the smallest square containing exactly n 3's.
2
6, 56, 586, 1156, 11547, 57735, 559769, 1197219, 6582806, 36514844, 350903624, 1798230611, 1825769244, 48304278624, 11547014044, 577333277556, 1527394295306, 6582576498844, 57465931849517
OFFSET
1,1
COMMENTS
a(20) > 10^14. - Giovanni Resta, Jul 27 2018
LINKS
Eric Weisstein's World of Mathematics, Square Number
MATHEMATICA
a[n_] := Block[{k=1}, While[DigitCount[k^2, 10, 3] != n, k++]; k]; Array[a, 6] (* Giovanni Resta, Jul 27 2018 *)
CROSSREFS
Sequence in context: A092655 A099140 A371739 * A227384 A199755 A025749
KEYWORD
nonn,base,more
AUTHOR
Patrick De Geest, Mar 15 1999
EXTENSIONS
More terms from Jon E. Schoenfield, Jan 11 2009
a(18)-a(19) from Giovanni Resta, Jul 27 2018
STATUS
approved