|
[Date Index]
[Thread Index]
[Author Index]
Re: Easy question: Infinite Series, Infinite Sequences
Brandon Burt wrote:
> I am looking for something like:
> (input) ListSequence[1/2^k, {k, 0, 5}] (output) {1, 1/2, 1/4, 1/8,
> 1/16}
Brandon,
In[1]:=
Table[1/2^k, {k,0,5}]
Out[1]=
{1, 1/2, 1/4, 1/8, 1/16, 1/32}
--
Allan Hayes
Training and Consulting
Leicester, UK
hay@haystack.demon.co.uk
http://www.haystack.demon.co.uk
voice: +44 (0)116 271 4198
fax: +44 (0)116 271 8642
Prev by Date:
Re: How to draw an ellipse?
Next by Date:
Re: Date in Header/Footer ??
Prev by thread:
Re: Easy question: Infinite Series, Infinite Sequences
Next by thread:
Re: Easy question: Infinite Series, Infinite Sequences
|