-1

I want to express the following in sequence:

$S$ is a sequene of natural numbers such that $n$ is repeated $x$ times, where $x$ is a positive integer.

In the following example, $x = 2n-1$

$$S = \{\underbrace{1}_\textrm{x = 1},\underbrace{2,2,2}_\textrm{x = 3},\underbrace{3,3,3,3,3}_\textrm{x = 5},\underbrace{4,4,4,4,4,4,4}_\textrm{x = 7},\dots\}$$

JohnWO
  • 2,119

1 Answers1

0

There are a few ways you could do this, one of the easiest would be to let your sequence contain ordered pairs of natural numbers $(n_i,m_i)$ which you just choose to interpret as "the number $n_i$ repeated $m_i$ times."

Alternatively if you really wanted to have each member of the sequence actually be some number repeated that many times, just give an explicit definition in words like you have. E.g.

Take the sequence with has $n$th term the natural number $n$ repeated $x_n$ times (where $x_n$ is something you define).

There is nothing wrong with sequences having members which aren't numbers or sets of numbers or whatever, as long as you clearly define your sequence you should be fine.

James
  • 5,550
  • 1
  • 17
  • 25