|
| |
|
|
A047897
|
|
a(n+1) = a(n) * sum of digits of a(n).
|
|
2
| |
|
|
5, 25, 175, 2275, 36400, 473200, 7571200, 166566400, 5663257600, 226530304000, 5663257600000, 226530304000000, 5663257600000000, 226530304000000000, 5663257600000000000, 226530304000000000000, 5663257600000000000000
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| After a(9), every second element has the same beginning. a(11+2k) = 40 * a(10+2k) = 40 * 25 * a(9+2k)
|
|
|
MAPLE
| P:=proc(n) local a, i, k, w; a:=5; print(a); for i from 1 by 1 to n do w:=0; k:=a; while k>0 do w:=w+k-(trunc(k/10)*10); k:=trunc(k/10); od; a:=a*w; print(a); od; end: P(1000); - Paolo P. Lava (paoloplava(AT)gmail.com), Apr 27 2007
|
|
|
CROSSREFS
| Cf. A047892.
Sequence in context: A035341 A137383 A049035 * A204461 A121144 A096684
Adjacent sequences: A047894 A047895 A047896 * A047898 A047899 A047900
|
|
|
KEYWORD
| easy,nonn,base
|
|
|
AUTHOR
| Miklos SZABO (mike(AT)ludens.elte.hu)
|
| |
|
|