Hypography Science Forums: Non-Figurate Numbers - Hypography Science Forums

Jump to content

Welcome! You are currently viewing the Hypography Science Forum as a guest. In order to participate in our science discussions, you should register now! Registration is free and you can use your Facebook login if you like.
  • 85 Pages +
  • 1
  • 2
  • 3
  • 4
  • 5
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Non-Figurate Numbers Rate Topic: ***** 1 Votes

#31 User is offline   modest 

  • Creating
  • Group: Moderators
  • Posts: 4,796
  • Joined: 04-September 07

Posted 25 July 2009 - 09:47 AM

Turtle said:

ok. B)
as an aside, and if i'm not mistaken, this is where Miss Dio-Phantine can get on stage. :doh: if it is the case that you searched your list to find 147, then suppose you had no list and still needed to find if 147, or any given integer, has an integer solution in n & s. like so:
147 = (n/2)*((s-2)*n-s+4) ?


I've gotten no closer :doh:

... still thinking on it.

~modest
Posted Image
0

#32 User is offline   Donk 

  • Understanding
  • View gallery
  • Group: Members
  • Posts: 328
  • Joined: 29-July 08

Posted 25 July 2009 - 03:26 PM

modest said:

Turtle said:

ok. :thumbs_up
as an aside, and if i'm not mistaken, this is where Miss Dio-Phantine can get on stage. :hyper: if it is the case that you searched your list to find 147, then suppose you had no list and still needed to find if 147, or any given integer, has an integer solution in n & s. like so:
147 = (n/2)*((s-2)*n-s+4) ?
I've gotten no closer :(

... still thinking on it.

~modest


I haven't used Diophantine equations for a lot of years, but IIRC it's a matter of looking for factors. Jay-qu did something like it a few days ago in proving that you could divide by 2 and always finish up with an integer.

I'd handle the problem this way:
F = \frac{1}{2}(n^2s-2n^2-ns+4n)
147 = \frac{1}{2}(n^2s-2n^2-ns+4n)
294 = n^2s-2n^2-ns+4n

294 factorises as 1,2,3,7,7. One of those factors must be n

checking n=1: 294 = s - 2 - s + 4 = 2. Clearly n=1 doesn't work
checking n=2: 294 = 4s - 8 - 2s + 8 = 2s. Gives s=147. A trivial result: n=2 goes in steps of 1, generating every number.
checking n=3: 294 = 9s - 18 - 3s + 12 = 6s - 6. Gives 6s=300, s=50
checking n=7: 294 = 49s - 98 - 7s + 28 = 42s - 70. Gives 42s= 364, which is fractional and therefore not a solution.

answer: n=3, s=50.

I wrote a quick&dirty QBASIC program to generate the non-fig numbers, then looked more carefully at the figurate numbers that were being thrown away.
n = 3: 6  9  12  15  ... 3x+6

n = 4: 10  16  22  28  ... 6x+10

n = 5: 15  25  35  45  ... 10x+15

n = 6: 21  36  51  66  ... 15x+21

n = 7: 28  49  70  91  ... 21x+28

n = 8: 36  64  92  120  ... 28x+36

n = 9: 45  81  117  153  ... 36x+45

n = 10: 55  100  145  190  ... 45x+55

n = 11: 66  121  176  231  ... 55x+66

n = 12: 78  144  210  276  ... 66x+78

n = 13: 91  169  247  325  ... 78x+91

n = 14: 105  196  287  378  ... 91x+105

n = 15: 120  225  330  435  ... 105x+120

n = 16: 136  256  376  496  ... 120x+136

n = 17: 153  289  425  561  ... 136x+153 

n = 18: 171  324  477  630  ... 153x+171

n = 19: 190  361  532  703  ... 171x+190

n = 20: 210  400  590  780  ... 190x+210

n = 21: 231  441  651  861  ... 210x+231

n = 22: 253  484  715  946  ... 231x+253

n = 23: 276  529  782 ... 253x+276

n = 24: 300  576  852 ... 276x+300

n = 25: 325  625  925 ... 300x+325

n = 26: 351  676 ... 325x+351

n = 27: 378  729 ... 351x+378

n = 28: 406  784 ... 378x+406

n = 29: 435  841 ... 406x+435

n = 30: 465  900 ... 435x+465

n = 31: 496  961 ... 465x+496

n = 32: 528 

n = 33: 561 

n = 34: 595 

n = 35: 630 

n = 36: 666 

n = 37: 703 

n = 38: 741 

n = 39: 780 

n = 40: 820 

n = 41: 861 

n = 42: 903 

n = 43: 946 

n = 44: 990

For brevity, if there are more than four numbers generated I've only shown the first four and the rule they follow. Turtle's triangular numbers are very much in evidence. The whole thing is a sieve, similar to Aristophanes', which is why the primes are showing. It doesn't pick out all the composites - instead of every 7th number after 7, it removes every 21st after 28, leaving 14 and 21 in place. 21 is taken out by n=6, but 14 remains. Incidentally, if you look at s=4 you'll see that every square is taken out.

Interesting stuff :)
2

#33 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 25 July 2009 - 04:24 PM

Donk said:

I haven't used Diophantine equations for a lot of years, but IIRC it's a matter of looking for factors. Jay-qu did something like it a few days ago in proving that you could divide by 2 and always finish up with an integer.

I'd handle the problem this way:
F = \frac{1}{2}(n^2s-2n^2-ns+4n)
147 = \frac{1}{2}(n^2s-2n^2-ns+4n)
294 = n^2s-2n^2-ns+4n

294 factorises as 1,2,3,7,7. One of those factors must be n

checking n=1: 294 = s - 2 - s + 4 = 2. Clearly n=1 doesn't work
checking n=2: 294 = 4s - 8 - 2s + 8 = 2s. Gives s=147. A trivial result: n=2 goes in steps of 1, generating every number.
checking n=3: 294 = 9s - 18 - 3s + 12 = 6s - 6. Gives 6s=300, s=50
checking n=7: 294 = 49s - 98 - 7s + 28 = 42s - 70. Gives 42s= 364, which is fractional and therefore not a solution.

answer: n=3, s=50.

I wrote a quick&dirty QBASIC program to generate the non-fig numbers, then looked more carefully at the figurate numbers that were being thrown away.
n = 3: 6  9  12  15  ... 3x+6

n = 4: 10  16  22  28  ... 6x+10

n = 5: 15  25  35  45  ... 10x+15

n = 6: 21  36  51  66  ... 15x+21

...

shortened for brevity


For brevity, if there are more than four numbers generated I've only shown the first four and the rule they follow. Turtle's triangular numbers are very much in evidence. The whole thing is a sieve, similar to Aristophanes', which is why the primes are showing. It doesn't pick out all the composites - instead of every 7th number after 7, it removes every 21st after 28, leaving 14 and 21 in place. 21 is taken out by n=6, but 14 remains. Incidentally, if you look at s=4 you'll see that every square is taken out.

Interesting stuff :)


:bow: nothing like a new set of eyes on a problem. :hihi: i actually started with the triangular numbers as a gnomon and when i started writing down the list in a table i saw Triangular= \frac{n(n+1)}{2}, where n is the ordinal. tupling up as you did naturally to squares, the only set of powers also a set of figurate numbers, i built the gnomon, wrote down the results, and saw Square= \frac{n(2n-0)}{2}. for 5-sided it's Pentagonal= \frac{n(3n-1)}{2}, then Hexagonal= \frac{n(4n-2)}{2}, so on up to s=11. i derived the genralized equation from looking at those specifics.

i hear euler liked the figurates, and wrote proofs on them etcetera, however if he, or anyone else, addressed the non-figurates as a sieved out set worthy of independent consideration, i have never seen mention of it. aye, my reading is limited in relation to all what's been penned, as all such reading needs be. thank goodness for hypography and goo ol' boys such as yourself and the other respondents.

now, let me add that some figurates belong to multiple subsets, e.g. example every other hexagonal number is Triangular. for example 15 has integer roots s=3:n=5, & s=6:n=3.

so...we're on it i guess. carry on and smoke 'em if ya got 'em. :friday: :esmoking:

PS here's my by-hand list. :clue:

Attached thumbnail(s)

  • Attached Image: figuratelist03.jpg

0

#34 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 05 August 2009 - 10:55 AM

continuing, one note of interest on the list i attached in the previous post. :ban: following down columns, the n index, notice that each successive s value increases by a trianagular number. for example, when n=2, then each successive s is 1 greater than the last; when n=3 each successive s is 3 greater than the last; for n=4 each successive s is 6 greater; and so on... :ban:

while the field subject of the op is the non-figurate numbers, the ground subject is the figurate numbers and no understanding what's not 'til what is is understood. :) just so, figurate numbers also have the name polygonal numbers and this denomination comes from the geometric arrangements of unities called gnomons. for our non-figurate, or non-polygonal numbers, it is the case that there is no such geometric arrangements that have their sum(s). (save of course the trivial n=2 arrangement).

now we have still to probe the field for diophantine or other solutions, but i continue to find the ground geometry interesting and potentially helpful in getting at the set of non-figurate numbers. that's just lipstick of course, the pig is i like constructing these gnomons and as far as i can find, no one else has bothered. ok, that's more lipstick. i made these and i'm putting them here cuz i can. oink! :ban: . . . . . . . . . . :)

Album of Gnomons:
Science Forums - Turtle's Album: Gnomons of Figurate/Polygonal Numbers

Gnomon of Octagonal Numbers
Posted Image

Just found, but not read, expose on figurate numbers: :)
Gnomon: from pharaohs to fractals - Google Books
0

#35 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 06 August 2009 - 01:07 PM

jaa-q's list in post #28 looks to be the so far "best", i.e. most accurate, list of the non-figurate numbers. below, his list first, then my subset of that with the primes removed. mind you J's set is correct only insomuch as his program is correct and my subset is correct only insomuch as his set is correct and my by-hand removing of primes is correct. the game's afoot. :( :lol: . . . . . . . :(

Jay-qu said:

Non-Figurate Set
7,8,11,13,14,17,19,20,23,26,29,31,32,37,38,41,43,44,47,50,53,56,59,61,62,67,68,71,73,74,77,79,80,83
86,89,97,98,101,103,104,107,109,110,113,116,119,122,127,128,131,134,137,139,140,143,146,149,151,
152,157,158,161,163,164,167,170,173,179,181,182,187,188,191,193,194,197,199,200,203,206,209,211,
212,218,221,223,224,227,229,230,233,236,239,241,242,248,251,254,257,263,266,269,271,272,277,278,
281,283,284,290,293,296,299,302,307,308,311,313,314,317,319,320,323,326,329,331,332,337,338,347,
349,350,353,356,359,362,367,368,371,373,374,377,379,380,383,386,389,391,392,397,398,401,404,407,
409,410,413,416,419,421,422,431,433,434,437,439,440,443,446,449,452,457,458,461,463,464,467,470,
473,476,479,482,487,488,491,493,494,497,499,500,503,509,517,518,521,523,524,527,530,533,536,539,
541,542,547,548,551,554,557,563,566,569,571,572,577,578,581,583,584,587,589,593,599,601,602,607,
608,611,613,614,617,619,620,623,626,629,631,632,638,641,643,644,647,649,650,653,656,659,661,662,
667,668,673,674,677,683,686,689,691,692,698,701,704,707,709,710,713,716,719,722,727,728,731,733,734,
737,739,740,743,746,749,751,752,757,758,761,767,769,770,773,776,779,787,788,791,794,797,799,800,803
,806,809,811,812,817,818,821,823,824,827,829,830,839,842,851,853,854,857,859,860,863,866,869,872,877
,878,881,883,884,887,890,893,896,899,901,902,907,908,911,913,914,917,919,920,923,926,929,937,938,941
,943,944,947,950,953,956,959,962,967,968,971,974,977,979,980,983,986,989,991,992,997,998,


EDIT: I reran the code and fixed the above numbers.


Non-Figurate Set Sans Primes
8,14,20,26,32,38,44,50,56,62,68,74,77,80,86,98,104,110,116,119,122,128,134,140,143,
146,152,158,161,164,170,182,187,188,194,200,203,206,209,212,218,221,224,230,236,242
,248,254,266,272,278,284,290,296,299,302,308,314,319,320,323,326,329,332,338,350,356
,362,368,371,374,377,380,386,391,392,398,404,407,410,413,416,422,434,437,440,446,452
,458,464,470,473,476,482,488,493,494,497,500,517,518,524,527,530,533,536,539,542,548
,551,554,566,572,578,581,583,584,589,602,608,611,614,620,623,626,629,632,638,644,649
,650,656,662,667,668,674,686,689,692,698,704,707,710,713,716,722,728,731,734,737,740
,746,749,752,758,767,770,776,779,788,791,794,799,800,803,806,812,817,818,824,830,842
,851,854,860,866,869,872,878,884,890,893,896,899,901,902,908,913,914,917,920
,923,926,938,943,944,950,956,959,962,968,974,979,980,986,989,992,998,...

0

#36 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 16 September 2009 - 11:24 AM

Turtle said:

Non-Figurate Set Sans Primes
8,14,20,26,32,38,44,50,56,62,68,74,77,80,86,98,104,110,116,119,122,128,134,140,143,
146,152,158,161,164,170,182,187,188,194,200,203,206,209,212,218,221,224,230,236,242
,248,254,266,272,278,284,290,296,299,302,308,314,319,320,323,326,329,332,338,350,356
,362,368,371,374,377,380,386,391,392,398,404,407,410,413,416,422,434,437,440,446,452
,458,464,470,473,476,482,488,493,494,497,500,517,518,524,527,530,533,536,539,542,548
,551,554,566,572,578,581,583,584,589,602,608,611,614,620,623,626,629,632,638,644,649
,650,656,662,667,668,674,686,689,692,698,704,707,710,713,716,722,728,731,734,737,740
,746,749,752,758,767,770,776,779,788,791,794,799,800,803,806,812,817,818,824,830,842
,851,854,860,866,869,872,878,884,890,893,896,899,901,902,908,913,914,917,920
,923,926,938,943,944,950,956,959,962,968,974,979,980,986,989,992,998,...


sum observations on the non-figurate set sans primes: . . . . .:)

the sum of any 2 even-non-figurate numbers is 2 more than an even-non-figurate number.
example: 20+14=34 & 34 is 2 greater than 32

the sum of an even-non-figurate number & an odd-non-figurate number is 1 less than an even-non-figurate number.
example: 20+611=631 and 631 is 1 less than 632

the sum of any 2 odd-non-figurate numbers is 2 more than an even-non-figurate number.
example: 119+ 371=490 & 490 is 2 more than 488
0

#37 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 19 September 2009 - 10:11 AM

Turtle said:

sum observations on the non-figurate set sans primes: . . . . .:evil:

the sum of any 2 even-non-figurate numbers is 2 more than an even-non-figurate number.
example: 20+14=34 & 34 is 2 greater than 32


50+44 :eek_big:
0

#38 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 25 September 2009 - 05:43 PM

Turtle said:

...the sum of an even-non-figurate number & an odd-non-figurate number is 1 less than an even-non-figurate number.
example: 20+611=631 and 631 is 1 less than 632...


:phones:
20+187 ;)
0

#39 User is offline   freeztar 

  • Pondering
  • Group: Moderators
  • Posts: 7,765
  • Joined: 29-October 05
  • LocationAtlanta, GA

Posted 25 September 2009 - 07:37 PM

turtle said:

the sum of any 2 odd-non-figurate numbers is 2 more than an even-non-figurate number.
Example: 119+ 371=490 & 490 is 2 more than 488


161+187
Hypography Science Forums Moderator
---
"There are no passengers on Spaceship Earth. We are all crew." - Marshall McLuhan

"We must not forget that when radium was discovered no one knew that it would prove useful in hospitals. The work was one of pure science. And this is a proof that scientific work must not be considered from the point of view of the direct usefulness of it." - Marie Curie
0

#40 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 25 September 2009 - 08:20 PM

freeztar said:

161+187


;) ;) :bow:

the measure of stepping advance, SA, of a turtle is given by the algebraic formula SA=2-1 and the prosaic formula, one step back for every two steps forward. . . . . :phones:
0

#41 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 03 December 2009 - 10:06 AM

proposition: all odd powers of 2 are non-figurate. :turtle: :naughty:

8 (2^3)
14 (2^1) (7^1)
20 (2^2) (5^1)
26 (2^1) (13^1)
32 (2^5)
38 (2^1) (19^1)
44 (2^2) (11^1)
50 (2^1) (5^2)
56 (2^3) (7^1)
62 (2^1) (31^1)
68 (2^2) (17^1)
74 (2^1) (37^1)
77 (7^1) (11^1)
80 (2^4) (5^1)
86 (2^1) (43^1)
98 (2^1) (7^2)
104 (2^3) (13^1)
110 (2^1) (5^1) (11^1)
116 (2^2) (29^1)
119 (7^1) (17^1)
122 (2^1) (61^1)
128 (2^7)
134 (2^1) (67^1)
140 (2^2) (5^1) (7^1)
143 (11^1) (13^1)
146 (2^1) (73^1)
152 (2^3) (19^1)
158 (2^1) (79^1)
161 (7^1) (23^1)
164 (2^2) (41^1)
170 (2^1) (5^1) (17^1)
182 (2^1) (7^1) (13^1)
187 (11^1) (17^1)
188 (2^2) (47^1)
.
.
.

0

#42 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 03 December 2009 - 06:31 PM

Turtle said:

proposition: all odd powers of 2 are non-figurate. :turtle: :rotfl:


not so fast turty. :naughty: 512 (2^9) is not non-figurate. :doh: (or i should say it's not in our program generated list(s)) is 512 really non-figurate? :shrug:

but wait! :cheer:

new proposition: all prime powers of 2 are non-figurate! :phones:

so, is 2048 (2^11) non-figurate? :)
0

#43 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 04 December 2009 - 10:53 AM

Turtle said:

not so fast turty. :naughty: 512 (2^9) is not non-figurate. :doh: (or i should say it's not in our program generated list(s)) is 512 really non-figurate? :shrug:

but wait! :detective:

new proposition: all prime powers of 2 are non-figurate! :ideamaybenot:

so, is 2048 (2^11) non-figurate? :sherlock:


using Donk's method given in post #32, i first confirmed that 512 is non-figurate, which is to say that it is figurate. :) 512 is the 8th 20-sided number.

continuing then to check non-figurate-set memberhood for 1024, 2^11, the next prime-power-of-two.

F = \frac{1}{2}(n^2s-2n^2-ns+4n)
1024 = \frac{1}{2}(n^2s-2n^2-ns+4n)
2048 = n^2s-2n^2-ns+4n

2048 factorises as 1,2,4,8,16,32,64,128,256,512,1024. One of those factors must be n says Donk. (very insightful! )

as Donke schön pointed out, n=1 makes s=0 and there are no zero-sided numbers. :eek_big:(and only 1 one-sided number. :hihi:). then trivially again, for any n=2, s=F so we disregard it.

so i checked the rest of the factors and derived fractional results for all, therefore 1024 is non-figurate. :smart: :singer:

so my new proposition holds. (that's the proposition that asserts that all prime powers of 2 are non-figurate) shall we try 2^13? is it also non-figurate? :confused: enquiring minds (with nothing better to do :kuku: ) want to know. :turtle:
0

#44 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 04 December 2009 - 01:22 PM

continuing then to check non-figurate-set memberhood for 8192, 2^13

F = \frac{1}{2}(n^2s-2n^2-ns+4n)
8192 = \frac{1}{2}(n^2s-2n^2-ns+4n)
16384 = n^2s-2n^2-ns+4n

16384 factorises as 1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192

for those n (n>2;n<F), 16384 = n^2s-2n^2-ns+4n has no integer solutions* for s, so 8192 is non-figurate, and the proposition holds. :) 'nother egg in da basqiat! :bounce: :hyper: . . . . . . . :turtle:

*anyone checking my by-hand work? :jab:
0

#45 User is offline   Turtle 

  • carbon lifeform
  • View gallery
  • Group: Members
  • Posts: 14,367
  • Joined: 17-January 05

Posted 05 December 2009 - 10:06 AM

continuing then to check non-figurate-set memberhood for 131072, 2^17

(will edit in my work as i go to keep it all in one post. :cap:)


F = \frac{1}{2}(n^2s-2n^2-ns+4n)

131072 = \frac{1}{2}(n^2s-2n^2-ns+4n)

262144 = n^2s-2n^2-ns+4n


262144 factorises as 1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536,131072

for n>2;n<F

n=4

262144 = 4^2s-2(4^2)-4s+16

262144 = 16s-32-4s+16

262144 = 12s-16

262160 = 12s

s=21846.666666666666666666666666667

no integer solution


n=8

262144 = 8^2s-2(8^2)-8s+32

262144 = 64s-128-8s+32

262144 = 56s-96

262240 = 56s

s=4682.8571428571428571428571428571

no integer solution


n=16

262144 = 16^2s-2(16^2)-16s+64

262144 = 256s-512-16s+64

262144 = 240s-448

262592 = 240s

s=1094.1333333333333333333333333333

no integer solution


n=32

262144 = 32^2s-2(32^2)-32s+128

262144 = 1024s-2048-32s+128

262144 = 992s-1920

264064 = 992s

s=266.19354838709677419354838709677

no integer solution


n=64

262144 = 64^2s-2(64^2)-64s+256

262144 = 4096s-8192-64s+256

262144 = 4032s-7936

270080 = 4032s

s=66.984126984126984126984126984127

no integer solution


n=128

262144 = 128^2s-2(128^2)-128s+512

262144 = 16384s-32768-128s+512

262144 = 16256s-32256

294400 = 16256s

s=18.11023622047244094488188976378

no integer solution


n=256

262144 = 256^2s-2(256^2)-256s+1024

262144 = 65536s-131072-256s+1024

262144 = 65280s-130048

392192 = 65280s

s=6.0078431372549019607843137254902

no integer solution


n=512

262144 = 512^2s-2(512^2)-512s+2048

262144 = 262144s-524288-512s+2048

262144 = 261632s-522240

784384 = 261632s

s=2.9980430528375733855185909980431

no integer solution


n=1024

262144 = 1024^2s-2(1024^2)-1024s+4096

262144 = 1048576s-2097152-1024s+4096

262144 = 1047552s-2093056

2355200 = 1047552s

s=2.2482893450635386119257086999022

no integer solution


n=2048

262144 = 2048^2s-2(2048^2)-2048s+8192

262144 = 4194304s-8388608-2048s+8192

262144 = 4192256s-8380416

8642560 = 4192256s

s=2.0615534929164631167562286272594

no integer solution


n=4096

262144 = 4096^2s-2(4096^2)-4096s+16384

262144 = 16777216s-33554432-4096s+16384

262144 = 16773120s-33538048

33800192 = 16773120s

s=2.0151404151404151404151404151404

no integer solution


n=8192

262144 = 8192^2s-2(8192^2)-8192s+32768

262144 = 67108864s-134217728-8192s+32768

262144 = 67100672s-134184960

134447104 = 67100672s

s=2.0036625564644121596874618483702

no integer solution


n=16384

262144 = 16384^2s-2(16384^2)-16384s+65536

262144 = 268435456s-536870912-16384s+65536

262144 = 268419072s-536805376

537067520 = 268419072s

s=2.0008545443447476042238906183239

no integer solution


n=32768

262144 = 32768^2s-2(32768^2)-32768s+131072

262144 = 1073741824s-2147483648-32768s+131072

262144 = 1073709056s-2147352576

2147614720 = 1073709056s

s=2.0001831110568559831537827692495

no integer solution


n=65536

262144 = 655368^2s-2(65536^2)-65536s+262144

262144 = 4294967296s-8589934592-65536s+262144

262144 = 4294901760s-8589672448

8589934592 = 4294901760s

s=2.0000305180437933928435187304494

no integer solution



that's a wrap. :eek2:
0

Share this topic:


  • 85 Pages +
  • 1
  • 2
  • 3
  • 4
  • 5
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users


View our Science Quizzes | Science links. About the Hypography Science Forums

Friends

We recommend these stellar sites:

PC Help Forum

ATL - Atlanta Computer Repair

Sponsors

Hypography?

Hypography [n.]: A combination of "hyperlink" and "bibliography" - ie, a list of links to electronic documents. Comparable to discography and bibliography, but not cartography.

When we launched in May 2000, we wanted to create a site to share science-related content of all kinds on the web. As time passed, our site turned into a pure science forum with lots of cool people.

So we kept the name Hypography and the cool science forum community - and aim to be a friendly place for discussion of science topics of all kinds.