MathGroup Archive 1998

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Easy question: Infinite Series, Infinite Sequences



 I haven't been able to find a command which
> outputs a list of the first n terms of some arbitrary sequence,
> however. For instance, I am looking for something like:
> 
> (input)    ListSequence[1/2^k, {k, 0, 5}] (output)    {1, 1/2, 1/4, 1/8,
> 1/16}

Hi Brandon,
 
 Table[1/2^k,{k,0,5}]
 
 will do what You want.
 
 Hope that helps
 Jens




  • Prev by Date: Re: How to learn formatting options
  • Next by Date: ``flattening" systems of equations
  • Prev by thread: Re: Easy question: Infinite Series, Infinite Sequences
  • Next by thread: Re: Easy question: Infinite Series, Infinite Sequences