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.

A067472 Smallest n-digit square starting with 2.

Original entry on oeis.org

25, 225, 2025, 20164, 200704, 2002225, 20007729, 200024449, 2000057284, 20000182084, 200000361796, 2000001237796, 20000000402496, 200000010642496, 2000000040249600, 20000000215721449, 200000000447251216
Offset: 2

Views

Author

Amarnath Murthy, Feb 09 2002

Keywords

Crossrefs

Cf. A035069 (roots), A045785, A067479 (2..9).

Programs

  • Mathematica
    Table[Ceiling[Sqrt[2*10^(n-1)]]^2,{n,2,30}] (* Harvey P. Dale, Apr 18 2021 *)
  • PARI
    for(n=2,25,a=ceil(sqrt(2*10^(n-1)))^2; print(a))

Formula

a(n) = ceiling(sqrt(2*10^(n-1)))^2, n>1. - Rick L. Shepherd, Feb 14 2002

Extensions

More terms from Rick L. Shepherd, Feb 14 2002