Finding formula for nth term in sequence

  • #1

JimbleJambler

##\displaystyle f_{n} = ((\sum_{k= \lfloor{\frac{n}{2}}\rfloor}^{n-1}f_{k}) mod 1) + 0.1##
##\displaystyle f_{1} = 0##

I really would like to know where to begin for finding a formula for the nth term, I wrote out a bunch of the terms and couldn't really eyeball a pattern of any sort. I noticed sometimes it seems to be that f(n) = (f(n-1) * 2) mod 1, but that's not very consistent.
 
Last edited by a moderator:

Answers and Replies

  • #2
Clarify your definition. You have [tex]f_n[/tex] defined in terms of itself as well as previous values of the index.
 
  • #3
Are you sure the sum ends with n? You use fn in the definition of fn.
You can ignore the "mod 1" and apply it afterwards in a suitable way, that won't change the sum.
 
  • #4
Clarify your definition. You have [tex]f_n[/tex] defined in terms of itself as well as previous values of the index.
Are you sure the sum ends with n? You use fn in the definition of fn.
You can ignore the "mod 1" and apply it afterwards in a suitable way, that won't change the sum.
Sorry I fixed it!
 
  • #5
It's easier to work with integers mod 10. I can only simplify it a bit.
Since f(2k) = f(k)+ ... + f(2k-1) + 1,
f(2k+1) = f(k)+ ... + f(2k-1) +f(2k) +1 = 2f(2k) so the odd values aren't interesting
f(2k+2) = 4f(2k) - f(k)
The recurrence is rather like a shift register random number generator, only with a growing shift register.
https://en.wikipedia.org/wiki/Linear-feedback_shift_register
 

Suggested for: Finding formula for nth term in sequence

Replies
1
Views
528
Replies
3
Views
539
Replies
1
Views
326
Replies
3
Views
969
Replies
14
Views
539
Replies
7
Views
831
Replies
5
Views
469
Replies
1
Views
254
Replies
7
Views
875
Back
Top