Jump to content
BrainDen.com - Brain Teasers
  • 0


Guest
 Share

Question

1 answer to this question

Recommended Posts

  • 0

Well, finding the next number is really dependent on your rounding. it's almost easier just to give the formula used for the sequence:

f(n) = 2pi(n(n-1)/2)

OR

f(n) = f(n-1) * pin-1, where f(0) = 2 (rounded to 2 decimals)

Specifically, what I did to get the numbers close to yours, is I used pi = 3.14159...so using the second formula I got the following:

f(0) = 2

f(1) = f(0) * p0 = 2

f(2) = f(1) * pi1 = 2 * pi = 6.28

f(3) = f(2) * pi2 = 6.28 * pi2 = 61.98

f(4) = f(3) * pi3 = 61.98 * pi3 = 1921.77

f(5) = f(4) * pi4 = 1921.77 * pi4 = 187197.24 (this is probably just rounding "error")

f(6) = f(5) * pi5 = 187197.24 * pi5 = 57285798.44

or, just using the first formula, it's close enough (again depending on rounding...and obviously these are slightly different)

f(1) = 2pi(1(0)/2) = 2pi0 = 2

f(2) = 2pi(2(1)/2) = 2pi1 = 6.28

f(3) = 2pi(3(2)/2) = 2pi3 = 62.01

f(4) = 2pi(4(3)/2) = 2pi6 = 1922.77

f(5) = 2pi(5(4)/2) = 2pi10 = 187294.51

f(6) = 2pi(6(5)/2) = 2pi15 = 57315565.75

So, I would say the next number is about 57285798.44 or somewhere close to there...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...