Re: Problem 707

A place to air possible concerns or difficulties in understanding ProjectEuler problems. This forum is not meant to publish solutions. This forum is NOT meant to discuss solution methods or giving hints how a problem can be solved.
Forum rules
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.

This forum is NOT meant to discuss solution methods for a problem.

In particular don't post any code fragments or results.

Don't start begging others to give partial answers to problems

Don't ask for hints how to solve a problem

Don't start a new topic for a problem if there already exists one


See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
Post Reply
pismobiker
Posts: 15
Joined: Wed Nov 18, 2015 12:01 am

Re: Problem 707

Post by pismobiker »

The problem states that S(3,3) = 32. But S(3,3) = F(3,1) + F(3,1) + F(3,2) + F(3,3), and we're given that F(3,3) = 512. So what's the correct value for S(3,3) (592?)?
skoczian
Posts: 28
Joined: Sat May 25, 2013 4:43 pm

Re: Problem 707

Post by skoczian »

No, read again the definition of S(w, n):

S(3, 3) = F(3, f1) + F(3, f2) + F(3, f3).
pismobiker
Posts: 15
Joined: Wed Nov 18, 2015 12:01 am

Re: Problem 707

Post by pismobiker »

Thanks. Always a problem when not reading things carefully!
Post Reply