Surface of a number
To define the surface S of a number N we form two substrings of digits b and h with a single cut through N; we then compute the product b * h (base*height = S). The surface of 8 is zero (as b or h are missing). The surface of 10 is also zero (as b = 1 and h = 0, for instance). The surface of 11 is 1 (as 1*1 = 1). The surface of 39 is 27 (as 3*9 = 27). 2021 has two distinct surfaces, depending on where you cut: the cut 202 / 1 will produce S = 202*1 = 202 and the cut 20 / 21 will produce S = 20*21 = 420 (no substring can start with a leading zero, except the substring 0 itself). 1234567890 has 9 distinct surfaces (9 possible cuts), etc. The interesting part is that every number is the surface of at least two other numbers; 17 (a prime number) is one of the surfaces of 117 (1*17) and one of the surfaces of 171 (17*1); 2021 is one of the surfaces of 4347 (as 43*47 = 2021) but also one of the surfaces of 12021 and 20211 (as 2021 = 1*2021 = 20...