Skip to main content

Questions tagged [sequence]

Questions on specifying order in and splicing of lists, including use of Mathematica Sequence objects.

3 votes
2 answers
244 views

I seek help coding an algorithm that shows when $e^{1/e}$ is repeatedly raised to itself it will eventually converge to $e$. The context for this post comes from this same question on M.SE: What ...
user1540346's user avatar
3 votes
5 answers
788 views

From real analysis, I was asked the following question: What happens when you hit the square root key repeatedly on a calculator for any initial positive number $x$? Formulate this question in terms ...
user475550's user avatar
3 votes
1 answer
91 views

This is a minimal example of a more complex problem. I need to build the Manipulate function as below with a variable number of parameters, which is why ...
Farewell Legacy's user avatar
1 vote
0 answers
107 views

Suppose we have an $n*n$ matrix whose elements follow a known sequence. Additionally, the eigenvalues of these matrices also form a sequence. for example sppose the below matrix ...
reza's user avatar
  • 123
1 vote
2 answers
142 views

Let $an$ be an arithmetic sequence with common difference d, and $bn$ be a geometric sequence with common ratio q. It is known that the sum of the first n terms of the sequence ${an + bn}$ is $sn = n^...
user avatar
1 vote
2 answers
151 views

a[n_] = 2^n - 4 s[n_] = Sum[Abs@a[k], {k, 1, n}] The summation formula obtained after adding the absolute value to the general term is this: ...
user avatar
4 votes
5 answers
574 views

A sequence (a_n) is given with a recursive formula, and another new sequence (b_n) is formed by the remainders of each term of (a_n) divided by 3. When calculating the sum of the first 2022 terms of ...
user avatar
2 votes
1 answer
121 views

Can we define in advance that $k$ is even? For example, when defining the sequence $\{a_n\}$ inductively as follows, input: ...
Young's user avatar
  • 291
0 votes
1 answer
199 views

We start with a number, say 12. Then try to find how many different 3-number geometric sequences exist below (up to and including) that number. Ex: below 12, there are 4 such sets: ...
Steve237's user avatar
  • 1,747
2 votes
3 answers
205 views

a[n_] = a (1 + t)^-n t[n_] = Sum[a[k], {k, 1, n}] The result obtained above is as follows: (a (1 + t)^-n (-1 + (1 + t)^n))/t ...
user avatar
4 votes
5 answers
308 views

I want to define a sequence from a list. For example if I have the list A={1, 2, 3, 34, -9, 18} I want to define the sequence ...
Protopapas Eleftherios's user avatar
2 votes
1 answer
147 views

Suppose we have the following code: ...
Arbuja's user avatar
  • 81
0 votes
0 answers
277 views

QUESTION: Let $m$ be a positive integer, and let $a_1, a_2, ..., a_{4m+2}$ be an arithmetic sequence with non-zero common difference. If removing two terms $a_i$ and $a_j$ ($i < j$) leaves $4m$ ...
csn899's user avatar
  • 1
3 votes
3 answers
385 views

Using Mathematica or otherwise, I need to find the convergence or divergence of$$\lim_{n\to\infty}\left\{n!\sum_{k=1}^{n!}\frac{1}{k^{\frac{3}{2}}}\right\}$$ where $\{x\}$ denotes the fractional part ...
Max's user avatar
  • 373
0 votes
2 answers
135 views

RSolve[{a[n] == a[n - 1] + a[n - 2], a[1] == 1, a[2] == 1}, a[n], n] The general term formula obtained by the above code is: ...
csn899's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
14