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

A135215
Maximal number of zero digits in square of number with n digits and without zero digits.
5
0, 1, 3, 4, 6, 7, 10, 10, 12, 13, 15
OFFSET
1,3
MATHEMATICA
(*For a(7) *) mx = 0; Do[Do[Do[Do[Do[Do[Do[k = 10^6b + 10^5q + 10^4r + 10^3p + 10^2s + 10n + m; w = IntegerDigits[k^2]; ile = 0; Do[If[w[[t]] == 0, ile = ile + 1; If[ile > mx, mx = ile]], {t, 1, Length[w]}], {m, 1, 9}], {n, 1, 9}], {s, 1, 9}], {p, 1, 9}], {r, 1, 9}], {q, 1, 9}], {b, 1, 9}]; mx
KEYWORD
nonn,base
AUTHOR
Artur Jasinski, Nov 23 2007
EXTENSIONS
a(8)-a(11) from Lars Blomberg, Jun 26 2011
STATUS
approved