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!)
A214301 Smallest limiting value of n under iteration of "Sum of its digits raised to its digits power" (A045512). 0
1, 288, 288, 288, 288, 288, 288, 288, 288, 1, 288, 288, 288, 288, 50119, 3439, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 3439, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 50119 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers that yield a fixed value after adding its digits raised to its digits power are called "Munchhausen Numbers" (A046253); i.e. 3435 = 3^3 + 4^4 + 3^3 + 5^5.
Since (9^9)*n < 10^n for n > 12; every initial value should eventually reach a "Munchhausen Number" or a cycle.
This sequence assigns to n that Munchhausen number or the lowest member of the cycle.
About 80% of the numbers reach the 288 cycle; 15% the 3439 cycle; 5% the 50119 cycle and less than 0.1% the fixed value 438579088; only few sporadic numbers reach 1 or 3435.
It has been proved that there are only four Munchhausen numbers (0, 1, 3435 and 438579088) with the convention of 0^0 = 0.
Open questions: are there any other cycles than those described here? What is the % of numbers < 10^n reaching a specific limiting value for n = 1, 2, 3, etc...?
LINKS
Eric Weisstein's World of Mathematics, Munchhausen Number.
MATHEMATICA
f[n_] := Module[{d = IntegerDigits[n]}, Sum[If[i == 0, 0, i^i], {i, d}]]; Table[s = NestWhileList[f, n, UnsameQ[##] &, All]; Min[Drop[s, Position[s, s[[-1]], 1, 1][[1, 1]]]], {n, 100}] (* T. D. Noe, Jul 12 2012 *)
CROSSREFS
Sequence in context: A334008 A035882 A244512 * A296902 A371948 A287116
KEYWORD
base,nonn
AUTHOR
Sergio Pimentel, Jul 11 2012
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)