All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Numbers
I Do Belong (Posted on 2009-02-22) Difficulty: 4 of 5
Each number in this table has a significance, and it is not just the property of the individual number.

What statement might define the right for each to appear?

1 1 1 2 4 4 3 9 9 13 169 16 67 4489 25 264 69696 36 1667 2778889 49
.. ... 64

That said, is it possible (and how) to analytically define the precise numerical values of successive rows?

See The Solution Submitted by brianjn    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
computer solution | Comment 1 of 4

A quick mathematica program gave the first 10 rows of the table which is a list of the integers for which when you add all the digits in  their square you get the next perfect square.  i.e 13^2=169 1+6+9=16 so then next row would have digital sum of 25 and thus 67^2=4489 4+4+8+9=25

i=1;

src=1;

While[src£10,

n=i^2;

ds=Total[IntegerDigits[n]];

If[dsŠsrc^2,

Print[i," ",n," ",src^2];

src++;

];

i++;

];

and this gives

1 1 1

2 4 4

3 9 9

13 169 16

67 4489 25

264 69696 36

1667 2778889 49

16667 277788889 64

94863 8998988769 81

1643167 2699997789889 100

 


  Posted by Daniel on 2009-02-22 14:23:49
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (7)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information