Multiples of a number

This tool calculates the first 150 positive multiples of an integer number.

Answer

Multiples of number 28
28, 56, 84, 112, 140, 168, 196, 224, 252, 280, 308, 336, 364, 392, 420, 448, 476, 504, 532, 560, 588, 616, 644, 672, 700, 728, 756, 784, 812, 840, 868, 896, 924, 952, 980, 1008, 1036, 1064, 1092, 1120, 1148, 1176, 1204, 1232, 1260, 1288, 1316, 1344, 1372, 1400, 1428, 1456, 1484, 1512, 1540, 1568, 1596, 1624, 1652, 1680, 1708, 1736, 1764, 1792, 1820, 1848, 1876, 1904, 1932, 1960, 1988, 2016, 2044, 2072, 2100, 2128, 2156, 2184, 2212, 2240, 2268, 2296, 2324, 2352, 2380, 2408, 2436, 2464, 2492, 2520, 2548, 2576, 2604, 2632, 2660, 2688, 2716, 2744, 2772, 2800, 2828, 2856, 2884, 2912, 2940, 2968, 2996, 3024, 3052, 3080, 3108, 3136, 3164, 3192, 3220, 3248, 3276, 3304, 3332, 3360, 3388, 3416, 3444, 3472, 3500, 3528, 3556, 3584, 3612, 3640, 3668, 3696, 3724, 3752, 3780, 3808, 3836, 3864, 3892, 3920, 3948, 3976, 4004, 4032, 4060, 4088, 4116, 4144, 4172, 4200, 4228, 4256, 4284, 4312, 4340, 4368, 4396, 4424, 4452, 4480, 4508, 4536, 4564, 4592, 4620, 4648, 4676, 4704, 4732, 4760, 4788, 4816, 4844, 4872, 4900, 4928, 4956, 4984, 5012, 5040, 5068, 5096, 5124, 5152, 5180, 5208, 5236, 5264, 5292, 5320, 5348, 5376, 5404, 5432, 5460, 5488, 5516, 5544, 5572, 5600, 5628, 5656, 5684, 5712, 5740, 5768, 5796, 5824, 5852, 5880, 5908, 5936, 5964, 5992, 6020, 6048, 6076, 6104, 6132, 6160, 6188, 6216, 6244, 6272, 6300, 6328, 6356, 6384, 6412, 6440, 6468, 6496, 6524, 6552, 6580, 6608, 6636, 6664, 6692, 6720, 6748, 6776, 6804, 6832, 6860, 6888, 6916, 6944, 6972, 7000, 7028, 7056, 7084, 7112, 7140, 7168, 7196, 7224, 7252, 7280, 7308, 7336, 7364, 7392, 7420, 7448, 7476, 7504, 7532, 7560, 7588, 7616, 7644, 7672, 7700, 7728, 7756, 7784, 7812, 7840, 7868, 7896, 7924, 7952, 7980, 8008, 8036, 8064, 8092, 8120, 8148, 8176, 8204, 8232, 8260, 8288, 8316, 8344, 8372, 8400Do you have any suggestions to improve this page ?


How to find the multiples of a number?

Simply multiply this number by 1, 2, 3, 4, 5, etc.

Example: the multiples of 3 are: 3x1, 3x2, 3x3, 3x4, etc, these are equal to,
3, 6, 9, 12, 15, 18, 21, etc

The list of multiples of a number is infinite (we can't list all of them!).

Easily identify multiples of 2, 3, 5...

- A multiple of 2 always ends with an even digit: 0, 2, 4, 6 or 8.
- A mutliple of 3: the sum of its digits is a multiple of 3.
- A multiple of 4: its last 2 digits form a number which is a multiple of 4.
- A multiple of 5: always ends with 0 or 5.
- A mutliple of 9: the sum of its digits is a multiple of 9.
- A multiple of 10: always ends with 0.

Special cases

- A number is always multiple of itself.
- 0 is a multiple of all numbers (0 = 0 x n).

Programming

Python

This python program finds the first c multiples of a given integer n.


def multiples(n, c):
	m = []
	for i in range (c):
		m.append((i+1) *n)
	return m

See also

Find the divisors of a number