The nth triangular number is the sum of the first n positive integers. The sequence of triangular numbers starts 1, 3, 6, 10, 15, and 21. These numbers are involved in Cody Problems 5, 291, 44289, 44334, 44732, 55680, 55695, 55705, 55710, and 55715, for example.
Write a function to return the sum of the non-triangular numbers between the nth and (n+1)st triangular numbers. For example, if n = 3, then the function should return 7+8+9 = 24. Beware the banned functions.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers16
Suggested Problems
-
Project Euler: Problem 4, Palindromic numbers
1298 Solvers
-
Number of 1s in a binary string
11568 Solvers
-
Calculate the Hamming distance between two strings
349 Solvers
-
Replace multiples of 5 with NaN
472 Solvers
-
306 Solvers
More from this Author328
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good problem!