[go: up one dir, main page]

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!)
A047901 a(1) = 9; a(n+1) = a(n) * sum of decimal digits of a(n). 9
9, 81, 729, 13122, 118098, 3188646, 114791256, 4132485216, 148769467776, 10711401679872, 578415690713088, 41645929731342336, 2998506940656648192, 296852187125008171008, 24045027157125661851648, 2164052444141309566648320 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n+1) = A057147(a(n)). - Reinhard Zumkeller, Mar 19 2014
MATHEMATICA
NestList[# Total[IntegerDigits[#]]&, 9, 20] (* Harvey P. Dale, Feb 07 2022 *)
PROG
(Haskell)
a047901 n = a047901_list !! (n-1)
a047901_list = iterate a057147 9 -- Reinhard Zumkeller, Mar 19 2014
(Python)
A047901_list, l = [9], 9
for _ in range(10**2):
....l *= sum(int(d) for d in str(l))
....A047901_list.append(l) # Chai Wah Wu, Jan 04 2015
CROSSREFS
Cf. A047892 (start=2), A047912 (start=3), A047897 (start=5), A047898 (start=6), A047899 (start=7), A047900 (start=8), A047902 (start=11).
Sequence in context: A050739 A240945 A158779 * A061587 A033145 A158762
KEYWORD
easy,nonn,base
AUTHOR
Miklos SZABO (mike(AT)ludens.elte.hu)
EXTENSIONS
Edited by Charles R Greathouse IV, Aug 02 2010
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 August 29 21:13 EDT 2024. Contains 375518 sequences. (Running on oeis4.)