|
| |
|
|
A055577
|
|
Sum of digits of a(n)^6 is equal to a(n).
|
|
6
| | |
|
|
|
OFFSET
| 0,3
|
|
|
EXAMPLE
| a(2) = 18 because 18^6 = 34012224 and 3+4+0+1+2+2+2+4 = 18
|
|
|
MATHEMATICA
| Select[Range[0, 100], #==Total[IntegerDigits[#^6]]&] (* From Harvey P. Dale, Oct 26 2011 *)
|
|
|
CROSSREFS
| Cf. A055567, A055572, A046459, A055575, A055576.
Sequence in context: A114814 A177724 A095739 * A002798 A124388 A179896
Adjacent sequences: A055574 A055575 A055576 * A055578 A055579 A055580
|
|
|
KEYWORD
| base,fini,full,nonn
|
|
|
AUTHOR
| Henry Bottomley (se16(AT)btinternet.com), May 26 2000
|
| |
|
|