Thread Closed

Next Number?

 
Share Thread Thread Tools
Oct17-05, 03:54 PM   #1
 

Next Number?


0, 3, 15, 42, 90, ...

What number comes next?

There's something interesting about these numbers (at least to me). <- thats not a clue its just that this isnt just some random series, theres more to it that is mathematical, not personal or a bus route...
 
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Front-row seats to climate change
>> Attacking MRSA with metals from antibacterial clays
>> New formula invented for microscope viewing, substitutes for federally controlled drug
Oct18-05, 05:21 AM   #2
 
i guess the next number is... 165
 
Oct18-05, 06:43 AM   #3
 
Blog Entries: 1
Recognitions:
Gold Membership Gold Member
I get 165 too. The formula is (2 * n + 1) * T(n), where T(n) is the sum of the first n digits, n = 0, 1, 2, ...
 
Oct18-05, 11:30 AM   #4
 

Next Number?


Quote by jimmysnyder
I get 165 too. The formula is (2 * n + 1) * T(n), where T(n) is the sum of the first n digits, n = 0, 1, 2, ...
That works too, the formula I was using is T(0) = 0, T(n) = (T(n-1))/3 + n) * 3. The interesting part was that if you add consecutive numbers, they add to the next set of consecutive numbers, starting with a perfect square and going to the number before the next perfect square. Like 1+2 = 3 and 4+5+6 = 7+8 and so on in a pyramid sort of way.
 
Oct18-05, 01:48 PM   #5
 
Blog Entries: 1
Recognitions:
Gold Membership Gold Member
Quote by nnnnnnnn
T(0) = 0, T(n) = (T(n-1))/3 + n) * 3.
Is there a typo in this? It doesn't seem to work. For instance

T(1) = (T(0)/3) + 1) * 3 = (0/3 + 1) * 3 = 1 * 3 = 3 is OK, but
T(2) = (T(1)/3) + 2) * 3 = (3/3 + 2) * 3 = 3 * 3 = 9
 
Oct18-05, 02:09 PM   #6
 
Quote by jimmysnyder
Is there a typo in this? It doesn't seem to work. For instance

T(1) = (T(0)/3) + 1) * 3 = (0/3 + 1) * 3 = 1 * 3 = 3 is OK, but
T(2) = (T(1)/3) + 2) * 3 = (3/3 + 2) * 3 = 3 * 3 = 9
It is a typo, it works when n is a perfect square.
 
Oct18-05, 02:41 PM   #7
 
Blog Entries: 1
Recognitions:
Gold Membership Gold Member
Quote by nnnnnnnn
It is a typo, it works when n is a perfect square.
You lost me there. Can you show me an example of it working? It seems to get the wrong answer for all n greater than 1, including perfect squares.
 
Oct18-05, 03:19 PM   #8
 
I miss stated it, it's: T(0) = 0, T(n) = (T( (n^(1/2) -1 )^2 )/3 + n) * 3, when n^(1/2) is an integer.

so for n = 4, its T(4) = ( T(1)/3 + 4 )*3 = (3/3 + 4)*3 = 15


It can also be n + (n + 1) + ... + (n + n^(1/2)) = (n + n^(1/2) + 1) + ... + ( n + 2*n^(1/2) )
 
Oct19-05, 07:03 AM   #9
 
Blog Entries: 1
Recognitions:
Gold Membership Gold Member
Quote by nnnnnnnn
I miss stated it, it's: T(0) = 0, T(n) = (T( (n^(1/2) -1 )^2 )/3 + n) * 3, when n^(1/2) is an integer.
so for n = 4, its T(4) = ( T(1)/3 + 4 )*3 = (3/3 + 4)*3 = 15
It can also be n + (n + 1) + ... + (n + n^(1/2)) = (n + n^(1/2) + 1) + ... + ( n + 2*n^(1/2) )
I still don't get it. In your sequence, T(4) is 90, not 15.
 
Oct19-05, 08:54 AM   #10
 
i think it would be simpler to express the formula like this:

nth term = (2*n^3 + 3*n^2 + n)/2 , where n=0,1,2,3,4,...
 
Oct19-05, 09:12 AM   #11
 
... or it can be this way also...

nth term = (2*n^3 - 3*n^2 + n)/2 , where n=1,2,3,4,5,...
 
Oct20-05, 01:29 PM   #12
 
Quote by jimmysnyder
I still don't get it. In your sequence, T(4) is 90, not 15.
It works if you do it for n= 0^2, 1^2, 2^2, ...

then 2^2 = 15, but 4^2 = 90.
 
Oct20-05, 01:40 PM   #13
 
Quote by croxbearer
i think it would be simpler to express the formula like this:
nth term = (2*n^3 + 3*n^2 + n)/2 , where n=0,1,2,3,4,...
I think that would make it simpler too. Before I figured out the recursive function, I was using excel with the formula n + (n+1) + ... + (n+n^(1/2)), that was a pain because you can't just copy and paste...
 
Oct20-05, 01:42 PM   #14
 
Blog Entries: 1
Recognitions:
Gold Membership Gold Member
Quote by nnnnnnnn
It works if you do it for n= 0^2, 1^2, 2^2, ...
then 2^2 = 15, but 4^2 = 90.
Work it out for me for 3^2 and maybe I'll finally get it.
 
Oct20-05, 02:17 PM   #15
 
T(n) = (T( (n^(1/2) -1 )^2 )/3 + n) * 3

T(0) = 0
T(1) = 3
T(4) = 15

T(3^2) = ( T(2^2) )/3 + 3^2) * 3 = (15/3 + 9) * 3 = 42

I think the problem was that I knew what I was thinking but then I didn't clearly state it. I was intending that T(n-1) would be the next lowest perfect square, so if n=9, I had n-1=4, even though I didnt state that until later. The most recent post should be an accurate formula.
 
Oct20-05, 02:50 PM   #16
 
Blog Entries: 1
Recognitions:
Gold Membership Gold Member
Thanks nnnnnnnn, I finally get it. You could simplify your own formula greatly as follows:

G(0) = 0
G(n) = G(n-1) + 3n^2, n = 1, 2, 3, ...

Essentially this is your formula with the factor of 3 distributed and n replaced with its square root.

For example:
G(0) = 0
G(1) = G(0) + 3 * 1 * 1 = 0 + 3 = 3
G(2) = G(1) + 3 * 2 * 2 = 3 + 12 = 15
G(3) = G(2) + 3 * 3 * 3 = 15 * 27 = 42
G(4) = G(3) + 3 * 4 * 4 = 42 + 48 = 90
etc.
 
Oct20-05, 03:09 PM   #17
 
I saw this too, and it would have been much easier to use. When I noticed the pattern (1+2=3, 4+5+6=7+8...), the perfect squares stuck out and then when I came up with the recursive function I was looking at it more from a point of view of the squares than I was from the pov of a sequense. Anyways I decided to keep it that way (even though it is more confusing and harder for me to state what I meant) because it seemed more related to the pattern.
 
Thread Closed
Thread Tools


Similar Threads for: Next Number?
Thread Forum Replies
Number Theory: Calculating mod large number Calculus & Beyond Homework 9
Conservation of Bayron number, Lepton number and strangeness Introductory Physics Homework 2
Number of ways to make change for dollar with even number of coins Calculus & Beyond Homework 1
proving that a real number exists in between a real number, Calculus 19
Reynolds number may have a similar effect to the Knudsen number Mechanical Engineering 0