A polite number is an integer that sums of at least two consecutive positive integers.
For example 7 = 3+4 so 7 is a polite number.
Given N return N-th polite number.
See also 2595
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers171
Suggested Problems
-
Find the peak 3n+1 sequence value
2572 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2070 Solvers
-
Reverse the Words (not letters) of a String
477 Solvers
-
Check if number exists in vector
14516 Solvers
-
5470 Solvers
More from this Author40
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
As a heads up, http://oeis.org/A138591 counts 1 as a polite number, but the test suite does not.