Pentagonal Numbers - MATLAB Cody - MATLAB Central

Problem 44360. Pentagonal Numbers

Difficulty:Rate

Your function will receive a lower and upper bound. It should return all pentagonal numbers within that inclusive range in ascending order. Additionally, it should return an array that indicates those numbers that are divisible by 5. For example,

 [p,d] = pentagonal_numbers(10,40)

should return

 p = [12,22,35]
 d = [ 0, 0, 1]

Solution Stats

34.72% Correct | 65.28% Incorrect
Last Solution submitted on Feb 18, 2025

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers657

Suggested Problems

More from this Author139

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page