login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A067476
Smallest n-digit square starting with 6.
1
64, 625, 6084, 60025, 600625, 6002500, 60000516, 600005025, 6000051600, 60000012601, 600000512409, 6000001260100, 60000004765089, 600000028030404, 6000000011750889, 60000000353550625, 600000001175088900
OFFSET
2,1
FORMULA
a(n) = ceiling(sqrt(6*10^(n-1)))^2, n>1. - Rick L. Shepherd, Feb 18 2002
PROG
(PARI) for(n=2, 21, a=ceil(sqrt(6*10^(n-1)))^2; print(a))
CROSSREFS
Cf. A035073 (roots), A045789, A067479 (2..9).
Sequence in context: A250355 A045789 A000525 * A179810 A303265 A138332
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Feb 09 2002
EXTENSIONS
More terms from Rick L. Shepherd, Feb 18 2002
STATUS
approved