SOLUTION: How many positive integers k less than 289 are there such that k^2+6k+7 is divisible by 289?
Algebra.Com
Question 1129772: How many positive integers k less than 289 are there such that k^2+6k+7 is divisible by 289?
Found 4 solutions by math_helper, kohkche, greenestamps, ikleyn:
Answer by math_helper(2461) (Show Source): You can put this solution on YOUR website!
I found 2, using brute force.
—
perl -e 'for($i=1;$i<289;$i++) { $v = $i*$i + 6*$i +7; if ($v % 289 == 0) {print "$i\n";} } '
42
241
Answer by kohkche(3) (Show Source): You can put this solution on YOUR website!
331
Answer by greenestamps(13200) (Show Source): You can put this solution on YOUR website!
I don't know of any easy way to find the answer algebraically....
You can of course ignore the answer from the other tutor. It was the first answer on this site from him, so it was probably just some joker who thought it would be fun to respond to your question with a useless answer.
Obviously there are not 331 positive integers less than 289....
You can use an excel spreadsheet or the table function of a graphing calculator to divide the expression by 289 for every integer from 1 to 288; you will find it is divisible by 4 positive integers less than 289: 42, 241, 285, and 287.
Answer by ikleyn(52794) (Show Source): You can put this solution on YOUR website!
.
I checked it using Excel spreadsheet.
The answer is: there are 2 ( two, TWO) such positive integer numbers.
They are 42 and 241.
There are no other solutions.
So, I confirm the answer by the tutor @Math_helper.
RELATED QUESTIONS
Q.3:-Show that there is no integer a such that a^2-3a-19 is divisible by 289? (answered by Edwin McCravy)
there are some positive integers n such that n^3 -7 is divisible by n-3 . how many such... (answered by drk)
Determine all integers k such that {{{k^3+k+1}}} is divisible by... (answered by richard1234)
Determine all integers k such that {{{k^3+k+1}}} is divisible by... (answered by Edwin McCravy)
Please help me on this problem: Suppose "k" is some positive interger. Consider numbers... (answered by ramkikk66)
how many positive integers less than 1000 are?divisible by7?,divisible by 7 but not by... (answered by robertb)
How many positive integers are there less than 800 such that all the digits are... (answered by drcole)
How many positive integers are there less than 900 such that all digits are... (answered by macston)
How many positive integers are there less than 800 such that all digits are even? (answered by Alan3354,richard1234)