Simple recurring sequence (1, 2, 1, 2, 1, 2, 1, 2, )

  • Context: High School 
  • Thread starter Thread starter rekshaw
  • Start date Start date
  • Tags Tags
    Sequence
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
rekshaw
Messages
15
Reaction score
0
trivial yet my mind is blank, I'm wayyy overthinking this!

Was just thinking of a simple sequence to test-drive on my calculator, and this one came up in my mind (the sequence terms, not the sequence itself...)

I've been trying for the past hour to find a simbolic representation of a sequence that will spit out: 1, 2, 1, 2, 1, 2...

The farthest I got so far is to get it to give back 0, 2, 0, 2 with this:

[itex]a_{n} = 1+(-1)^{n}[/itex]

From [tex]a_{1}[/tex] to [tex]a_{5}[/tex] it gives me: 0, 2, 0, 2, 0

I know it's probably the easiest thing in the world...
 
Physics news on Phys.org
If you can find an expression for 0, 2, 0, 2, ... you should be able to find one for 0, 1, 0, 1, 0, ... If you can find one for 0, 1, 0, 1, 0, ... you should be able to find one for 1, 2, 1, 2, 1, ...

Alternately, it's a recurrence relation with a_{n+1} = 3 - a_n. You can find a second-order homogeneous recurrence relation if you prefer.
 
so they would be saying 1.5 + (0.5)(-1)^n
 
dacruick said:
so they would be saying 1.5 + (0.5)(-1)^n

Naturally! Thanks very much guys and sorry for the trivial question.