OFFSET
0,1
COMMENTS
Illustrates the growth of a bank account with initial deposit of $100 and 6% of interest per year.
LINKS
Robert Israel, Table of n, a(n) for n = 0..10000
MAPLE
seq(round(100*(106/100)^n), n=0..100); # Robert Israel, Nov 24 2015
MATHEMATICA
Table[Round[100*1.06`50^n], {n, 0, 50}] (* Harvey P. Dale, Sep 27 2014 *)
PROG
(PARI) A204586(n)=round(100*1.06^n)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Feb 13 2012
STATUS
approved