Talk:Numbers which are the cube roots of the product of their proper divisors: Difference between revisions

m
→‎Hint: IEEE-754 limits
(→‎Hint: Taking Rdm's hint...)
m (→‎Hint: IEEE-754 limits)
 
(3 intermediate revisions by 2 users not shown)
Line 5:
:Hi Rdm, Thanks for the hint. Before I posted the Algol 68 sample, I saw your comment that we just need to inspect the powers of the prime factors but at the time I didn't realise what you meant and not being au-fait with J, couldn't read your code to find out. However after googling stuff about cubes I now realise what you meant. I shall reword that comment.
:Considering that 41^3 is greater than 65535, I wasn't going to attempt the task in a 16 bit language but I think I will now... thanks. --[[User:Tigerofdarkness|Tigerofdarkness]] ([[User talk:Tigerofdarkness|talk]]) 16:05, 30 September 2022 (UTC)
::Hmm, it's just dawned on me that, despite obtaining the correct answer for the 50,000th term, the Wren solution is unsafe for n > 208063 as n^3 will then exceed 2^53 which is the maximum integer the language can safely deal with. I've changed it now so that it is safe. BTW I did intend the task to be simple but not deceptively so :) --[[User:PureFox|PureFox]] ([[User talk:PureFox|talk]]) 17:55, 30 September 2022 (UTC)
 
:::Thanks, both.
:::Purefox, I noticed your comment on the newer Wren solution and checked the OEIS page and it does indeed say that the sequence is 1 and the numbers with 8 divisors! So it really is simple and divisor products, cubes, cube roopts etc. are not needed.
:::BTW, I didn't mean "deceptively simple" as an insult... It started out looking simple but when the magnitude of the divisor products became apparent, it started to look hard but (as with a lot of things) it is actually simple if you use the right technique (i.e. someone shows you a better approach). --[[User:Tigerofdarkness|Tigerofdarkness]] ([[User talk:Tigerofdarkness|talk]]) 21:58, 30 September 2022 (UTC)
<br>
 
I ran a few tests...<br>
The first number whose proper divisor product won't fit in signed 32 bits is 84, with pdp 4182119424 (10 digits).<br>
The first number whose proper divisor product won't fit in signed 64 bits is 240, with pdp 2641807540224000000000 (22 digits).<br>
--[[User:Tigerofdarkness|Tigerofdarkness]] ([[User talk:Tigerofdarkness|talk]]) 10:14, 1 October 2022 (UTC)
:The precision limits are 180 for 64-bit IEEE-754 floats and (again) 240 for 80-bit floats. --[[User:Petelomax|Petelomax]] ([[User talk:Petelomax|talk]]) 01:50, 2 October 2022 (UTC)
7,795

edits