A067472 Smallest n-digit square starting with 2.
25, 225, 2025, 20164, 200704, 2002225, 20007729, 200024449, 2000057284, 20000182084, 200000361796, 2000001237796, 20000000402496, 200000010642496, 2000000040249600, 20000000215721449, 200000000447251216
Offset: 2
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