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

46.15% Correct | 53.85% Incorrect
Last Solution submitted on Sep 25, 2025

Solution Comments

Show comments

Problem Recent Solvers6

Suggested Problems

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!