login
A048353
a(n)^2 is the smallest square containing exactly n 8's.
2
9, 83, 298, 1378, 8878, 29641, 298141, 623609, 9321378, 28072917, 94121667, 329877083, 4341484641, 29478276559, 62360956378, 151284113141, 3436394751609, 9428037062872, 22065558748622, 29770520349641
OFFSET
1,1
COMMENTS
a(21) > 10^14. - Giovanni Resta, Jul 27 2018
LINKS
Eric Weisstein's World of Mathematics, Square Number
MATHEMATICA
a[n_] := Module[{i = 1}, While[DigitCount[i^2][[8]] != n, i++ ]; i]; (* Sam Handler (sam_5_5_5_0(AT)yahoo.com), Aug 22 2006 *)
CROSSREFS
Sequence in context: A015497 A174472 A039357 * A037502 A037679 A015579
KEYWORD
nonn,base,more
AUTHOR
Patrick De Geest, Mar 15 1999
EXTENSIONS
a(13)-a(16) from Jon E. Schoenfield, Jan 24 2009
a(17)-a(20) from Giovanni Resta, Jul 27 2018
STATUS
approved