|
| |
|
|
A101337
|
|
Sum of {each digit of n} raised to the power {number of digits in n}.
|
|
5
| |
|
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 5, 10, 17, 26, 37, 50, 65, 82, 4, 5, 8, 13, 20, 29, 40, 53, 68, 85, 9, 10, 13, 18, 25, 34, 45, 58, 73, 90, 16, 17, 20, 25, 32, 41, 52, 65, 80, 97, 25, 26, 29, 34, 41, 50, 61, 74, 89, 106, 36, 37, 40, 45, 52, 61, 72, 85, 100, 117, 49, 50, 53, 58, 65
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
EXAMPLE
| a(75) = 7^2 + 5^2 and a(705) = 7^3 + 0^3 + 5^3
|
|
|
MATHEMATICA
| Array[Total[IntegerDigits[#]^IntegerLength[#]]&, 80] (* From Harvey P. Dale, Aug 27 2011 *)
|
|
|
CROSSREFS
| Sequence in context: A080463 A114570 A115026 * A135208 A156207 A061486
Adjacent sequences: A101334 A101335 A101336 * A101338 A101339 A101340
|
|
|
KEYWORD
| base,easy,nonn
|
|
|
AUTHOR
| Gordon Robert Hamilton (hamiltonian(AT)shaw.ca), Dec 24 2004
|
|
|
EXTENSIONS
| Name changed by Axel Harvey, Dec 26 2011
|
| |
|
|