OFFSET
8,1
LINKS
Robert Israel, Table of n, a(n) for n = 8..10000
EXAMPLE
a(15) = 9, 15^15 = 437893890380859375 and starting from 4 (the MSD) 9 is the 15th digit.
MAPLE
f:= n -> convert(n^n, base, 10)[-n]:
map(f, [$8..200]); # Robert Israel, Feb 11 2017
MATHEMATICA
Flatten[Table[Take[IntegerDigits[n^n], {n}], {n, 8, 150}]] (* Harvey P. Dale, May 01 2011 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 21 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 07 2003
STATUS
approved