A066022 Number of digits in n^n.
1, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 15, 17, 18, 20, 21, 23, 25, 27, 28, 30, 32, 34, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 88, 90, 92, 94, 96, 98, 101, 103, 105, 107, 109, 112, 114, 116, 118, 121, 123, 125
Offset: 1
Links
- Harry J. Smith, Table of n, a(n) for n=1..1000
Programs
-
Magma
[ #Intseq(n^n): n in [1..80] ]; // Vincenzo Librandi, Mar 08 2015
-
Maple
[seq(length(n^n), n=1..55)]; # Zerinvary Lajos, Mar 10 2007
-
Mathematica
Table[IntegerLength[n^n], {n, 80}] (* Vincenzo Librandi, Mar 08 2015 *)
-
PARI
a(n)=#digits(n^n); \\ Joerg Arndt, Apr 30 2020
Formula
Extensions
Edited by N. J. A. Sloane Jan 03 2009 at the suggestion of Jon E. Schoenfield.
Comments