InterviewSolution
| 1. |
What are Harshad Numbers? |
|
Answer» For explicit calculations Harshad number or Niven numbers for a given number base represents an integer which is DIVISIBLE by the sum of its own digit for example 112, the sum of digits of 112 is 4 and 112 is itself divisible by 4 so it COMES under the category of a Harshad Number. These numbers in the base are also known by the NAME n-Harshad numbers. Defining all numbers in the form of positive integer which is also divisible by the sum of its digits in bases n>2. The numbers which are all Harshad numbers are 1, 2, 4 and 6. In order to CHECK if a number is a Harshad number or not we can follow-
There are many such kinds of numbers with different peculiar properties and one should know at least the popular ones. |
|