OFFSET
1,1
COMMENTS
Exists for all n because A379603(n) does (see Formulas there). - Michael S. Branicky, Dec 30 2024
EXAMPLE
a(3) = 264 because among all 3-digit numbers, 264 is the smallest whose square 69696 contains only digits greater than 5.
MATHEMATICA
f[m_] := For[k = Ceiling@Sqrt[100^m/15], k < 10^m - 1, k++, If[Min@IntegerDigits[k^2] > 5, Return[k]; ]]; Table[f[m], {m, 10}]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Zhining Yang, Dec 27 2024
EXTENSIONS
a(9) corrected and a(11) inserted by Michael S. Branicky, Dec 27 2024
More terms from Jinyuan Wang, Dec 27 2024
STATUS
approved