cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A034994 Square root of smallest square starting with a string of n 9's.

Original entry on oeis.org

3, 315, 3161, 31622, 316227, 3162277, 31622776, 316227765, 316227766, 31622776601, 316227766016, 3162277660167, 31622776601683, 316227766016837, 3162277660168378, 31622776601683792
Offset: 1

Views

Author

Patrick De Geest, Nov 15 1998

Keywords

Examples

			a(5) = 316227^2 = {99999}515529.
		

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