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!)
A088153 a(n) is the value of the n-th digit in the decimal representation of n^n. 8

%I #9 Dec 06 2022 09:38:17

%S 1,0,0,0,0,0,0,0,0,0,1,2,8,0,1,7,4,2,6,1,6,7,7,9,6,7,2,3,5,2,9,3,9,7,

%T 1,9,7,7,4,9,6,2,2,8,1,5,4,3,0,7,5,4,7,5,9,1,2,5,3,5,6,9,4,0,4,1,2,4,

%U 6,5,9,9,0,1,4,9,1,6,7,1,6,7,7,0,6,6,5,9,0,0,1,7,0,6,3,7,5,2,6,2,0,8

%N a(n) is the value of the n-th digit in the decimal representation of n^n.

%C a(n) = d(n) with n^n = Sum_{0<=d(k)<10, k>=0} d(k)*10^k.

%H Robert Israel, <a href="/A088153/b088153.txt">Table of n, a(n) for n = 0..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Decimal.html">Decimal</a>

%F a(n) = floor(n^n / 10^n) mod 10.

%e For n=16, 16^16 = 18446744073709551616, a(16)=4.

%e a(0)=1, a(k)=0 for 0 < k < 10 and a(10)=1.

%p f:= proc(n) local x, L;

%p x:= n &^ n mod 10^(n+1);

%p floor(x/10^n)

%p end proc:

%p f(0):= 1:

%p map(f, [$0..101]); # _Robert Israel_, Dec 02 2022

%Y Cf. A000312, A088150, A088151, A088152, A088154, A088155, A088156, A088157.

%K nonn,base

%O 0,12

%A _Reinhard Zumkeller_, Sep 20 2003

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 April 18 08:14 EDT 2024. Contains 371769 sequences. (Running on oeis4.)