Let's factor 2024: $2024=8\times 11\times 23$. So we can make a date: 8/11/23, or August 11, 2023. Or we could also make 11/8/23, November 8, 2023 (if you live in Europe, they will be switched).
Question: is there any year any time soon such that its factorization will give a date in the same year?
This could obviously be formulated (and generalized) as a problem in number theory, but I will not do it here.
Note that lots of years will not have a factorization that can be interpreted as a date in format mm/dd/yy. And some will give factorizations with multiple interpretations (besides the US/Europe date format...)
If such a year exists, then a person born on the corresponding date could claim to have a really special date of birth....
Let the date be of the form $a/b/c$ and we wish to find dates such that $abc = 2000 + c$. For any year $c | $year, hence the last two digits should divide the first two. Python tells me that this is: $$ Y = \{2001, 2002, 2004, 2005, 2008, 2010, 2016, 2020, 2025, 2040, 2050, 2080, 2100\}$$ All of the years except for $2025, 2040, 2050, 2080$ have passed, and I choose not to count $2100$ since it's not in the twenty first century and $c=0$. Regardless, we would then divide each year by $c$, create a prime factorization and check all the pairs to see if $a \in [1,12]$, $b \in [1,31]$ (and make sure no illegal dates). Python again tells me the following: $$\begin{align} D_{2025} &= \{(3,27,25),(9,9,25)\}\\ D_{2040} &= \{(3,17,40)\} \\ D_{2050} &= \{\} \\ D_{2080} &= \{(1,26,80),(2,13,80)\} \end{align} $$ In the case of $2050$, $\frac{2050}{50} = 41$ which is prime, so it's not possible. I believe these are all of the cases in the twenty-first century that are upcoming, but I could be wrong. My code below is:
Also I saw in the comments someone said $1/1/2027$ is trivial, but I'm fairly sure (by my interpretation at least) that dates like this aren't allowed since $1 \cdot 1 \cdot 27 \not = 2027$.