Problem 61000. Touchard Polynomial

Return the coefficients of nth (n>=0) Touchard polynomials -
T1(x) = x;
output = [1 0];
T2(x) = x^2 + x;
output = [1 1 0];
Only vectorized solutions will be accepted. Check the test suite for banned functions.

Solution Stats

54.55% Correct | 45.45% Incorrect
Last Solution submitted on Sep 21, 2025

Solution Comments

Show comments

Problem Recent Solvers6

Suggested Problems

More from this Author39

Problem Tags

Community Treasure Hunt

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

Start Hunting!