The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A113018 {Digital root of n} raised to the power {number of digits of n}. 2
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1, 4, 9, 16, 25, 36, 49, 64, 81, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Fixed points are: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 and 81.
LINKS
FORMULA
a(n) = A010888(n)^A055642(n). - Michel Marcus, Feb 10 2019
EXAMPLE
a(9) = 9^1 = 9;
a(19) = (1 + 9 = 10 => 1 + 0) = 1^2 = 1;
a(85) = (8 + 5 = 13 => 1 + 3) = 4^2 = 16.
MAPLE
A113018 := proc(n) if(n=0)then return 0:fi: return (((n-1) mod 9) + 1)^length(n): end: seq(A113018(n), n=0..100); # Nathaniel Johnston, May 05 2011
CROSSREFS
Sequence in context: A138470 A325454 A112875 * A113009 A068064 A152147
KEYWORD
base,easy,nonn
AUTHOR
Alexandre Wajnberg, Jan 03 2006
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 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)