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!)
A125724 If "sumdigit" denotes the sum of the digits of a number then these are the numbers n such that n=sumdigit(sumdigit(n)^sumdigit(n)). 3
1, 13, 25, 45, 58, 88, 98 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Sequence is complete. - Giovanni Resta, Mar 21 2013
LINKS
EXAMPLE
sumdigit(13)=4; 4^4 = 256; sumdigit(256)=13
MAPLE
P:=proc(n) local i, j, k, w; for i from 1 by 1 to n do w:=0; k:=i; while k>0 do w:=w+k-trunc(k/10)*10; k:=trunc(k/10); od; k:=w^w; w:=0; while k>0 do w:=w+k-trunc(k/10)*10; k:=trunc(k/10); od; if (i=w) then print(i, w); fi; od; end: P(100);
MATHEMATICA
sdQ[n_]:=Module[{sd=Total[IntegerDigits[n]]}, n==Total[ IntegerDigits[ sd^sd]]]; Select[Range[100], sdQ] (* Harvey P. Dale, Oct 22 2013 *)
CROSSREFS
Cf. A125526.
Sequence in context: A195558 A026058 A032697 * A277714 A163551 A005696
KEYWORD
easy,fini,full,nonn,base
AUTHOR
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 29 22:39 EDT 2023. Contains 363044 sequences. (Running on oeis4.)