login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A348553 Number of digits in 11^n. 2
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A055642(A001020(n)) = A055642(11^n).
EXAMPLE
a(24) = 25 because 11^24 = 9849732675807611094711841, which has 25 digits.
a(25) = 27 because 11^25 = 108347059433883722041830251, which has 27 digits.
MATHEMATICA
a[n_] := IntegerLength[11^n]; Array[a, 100, 0] (* Amiram Eldar, Oct 22 2021 *)
PROG
(PARI) a(n) = #Str(11^n);
(Python)
def a(n): return len(str(11**n))
print([a(n) for n in range(98)]) # Michael S. Branicky, Oct 22 2021
CROSSREFS
Number of digits in b^n: A034887 (b=2), A034888 (b=3), A210434 (b=4), A210435 (b=5), A210436 (b=6), A210062 (b=7), this sequence (b=11).
Sequence in context: A258266 A135383 A335525 * A032521 A246102 A243903
KEYWORD
nonn,easy,base
AUTHOR
Seiichi Manyama, Oct 22 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 3 19:56 EDT 2024. Contains 372222 sequences. (Running on oeis4.)