
Say you have a common 6-sided die and need to roll it until the sum of your rolls is at least 6. How many times would you need to roll?
If you had a 20-sided die and you need to roll for a sum of at least 20, would that take more rolls or fewer rolls on average?
According to [1], the expected number of rolls of an n-sided dice for the sum of the rolls to be n or more equals
So for a 6-sided die, the expected number of rolls is (7/6)5 = 2.1614.
For a 20-sided die, the expected number of rolls is (21/20)19 = 2.5270.
The expected number of rolls is an increasing function of n, and it converges to e.

Here’s a little simulation script for the result above.
from numpy.random import randint
def game(n):
s = 0
i = 0
while s < n:
s += randint(1, n+1)
i += 1
return i
N = 1_000_000
s = 0
n = 20
for _ in range(N):
s += game(n)
print(s / N)
This produced 2.5273.
[1] Enrique Treviño. Expected Number of Dice Rolls for the Sum to Reach n. American Mathematical Monthly, Vol 127, No. 3 (March 2020), p. 257.
Like my old man used to say,,,”It boggles the mind!” :=)