login
A185679
Number of digits in decimal expansion of n^2.
5
1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5
OFFSET
0,5
LINKS
FORMULA
a(n) = 1 + floor(log(10, n^2)) for n>0.
EXAMPLE
a(33)=4 since 33^2=1089 has 4 digits.
MATHEMATICA
Table[Length[IntegerDigits[n^2]], {n, 0, 100}]
Join[{1}, IntegerLength[Range[100]^2]] (* Harvey P. Dale, Sep 17 2019 *)
PROG
(PARI) concat([1], for(n=1, 50, print1(1 + floor(log(n^2)/log(10)), ", "))) \\ G. C. Greubel, Jul 10 2017
(Python)
def A185679(n): return len(str(n**2)) # Chai Wah Wu, Mar 15 2023
CROSSREFS
Cf. A055642.
Sequence in context: A320857 A211664 A182434 * A366721 A080342 A081604
KEYWORD
nonn,base
AUTHOR
Carmine Suriano, Feb 23 2011
STATUS
approved