A034994 Square root of smallest square starting with a string of n 9's.
3, 315, 3161, 31622, 316227, 3162277, 31622776, 316227765, 316227766, 31622776601, 316227766016, 3162277660167, 31622776601683, 316227766016837, 3162277660168378, 31622776601683792
Offset: 1
Examples
a(5) = 316227^2 = {99999}515529.
Links
- Robert Israel, Table of n, a(n) for n = 1..998
Crossrefs
Cf. A034995.
Programs
-
Maple
f:= proc(n) local d,q,x; for d from n do q:= 10^d-10^(d-n); x:= isqrt(q); if x^2 < q then x:= x+1 fi; if x^2 < 10^d then return x fi od end proc: map(f, [$1..20]); # Robert Israel, Sep 28 2018
Extensions
More terms from Hans Havermann, Jun 18 2001