|
| |
|
|
A067040
|
|
n^(sum of digits of n).
|
|
2
| |
|
|
1, 1, 4, 27, 256, 3125, 46656, 823543, 16777216, 387420489, 10, 121, 1728, 28561, 537824, 11390625, 268435456, 6975757441, 198359290368, 6131066257801, 400, 9261, 234256, 6436343, 191102976, 6103515625, 208827064576, 7625597484987
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=0,...,400
|
|
|
EXAMPLE
| a(12) = 12^(1+2) = 1728.
|
|
|
PROG
| (PARI) SumD(x)= { local(s=0); while (x>9, s+=x%10; x\=10); return(s + x) } { for (n=0, 400, write("b067040.txt", n, " ", n^SumD(n)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Apr 29 2010]
|
|
|
CROSSREFS
| Sequence in context: A045503 A134010 A117280 * A070271 A000312 A177885
Adjacent sequences: A067037 A067038 A067039 * A067041 A067042 A067043
|
|
|
KEYWORD
| nonn,base,easy
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Dec 29 2001
|
|
|
EXTENSIONS
| More terms from Jason Earls (zevi_35711(AT)yahoo.com), Jan 18 2002
|
| |
|
|