I propose the following challenge: find the smallest integer number that, when written in English words, equals the sum of it's letters (following gematria rules i.e. A=1, B=2 etc).
T W O H U N D R E D A N D F I F T Y O N E
20+23+15+08+21+14+04+18+05+04+01+14+04+06+09+06+20+25+15+14+05 = 251
If you don't include "and" it's more interesting. I don't think there is an answer because the value of a number grows much faster (exponentially) than the value of its gematric sum (linearly), so once you've checked there's no example below some limit (one million is enough), there can't be any examples larger than that.
I really wanted to find an answer for your challenge but it seems there aren't any answers using the regular 1-26 gematria and numbers written in their ordinary English form (without "and"). However, I did find some answers using a "zero-indexed" gematria ranging from 0-25, and with this other English gematria described here on Wikipedia: https://en.wikipedia.org/wiki/English_Qabalah#R._Leo_Gillis'...
Python 3:
>>> num_strings = ['Zero', 'One', 'Two', ... 'Seven Hundred Thirty Two' ... ] # I tried 0 to 1000. num_strings generation script sold separately
>>> def find_gematria_matches(values): return [i for i,ns in enumerate(num_strings) if i == sum(values[ord(c)-65] for c in ns.upper() if c.isalpha())]
I was bored and played around with various letter numbering schemes, like reversed order, or digits of Pi (or E), or the value of the letter multiplied by how many times it appears in the string and so on, and so forth. I got bored eventually, but it is a great fun (for certain minds, I guess, but still).